factor/basis/bootstrap/io/io.factor

13 lines
356 B
Factor
Raw Normal View History

2007-11-09 03:00:43 -05:00
USING: system vocabs vocabs.loader kernel combinators
2007-12-30 15:07:22 -05:00
namespaces sequences io.backend ;
2007-09-20 18:09:08 -04:00
IN: bootstrap.io
"bootstrap.compiler" vocab [
2007-11-09 03:00:43 -05:00
"io." {
{ [ "io-backend" get ] [ "io-backend" get ] }
2008-04-02 19:25:33 -04:00
{ [ os unix? ] [ "unix" ] }
{ [ os winnt? ] [ "windows.nt" ] }
{ [ os wince? ] [ "windows.ce" ] }
2007-11-09 03:00:43 -05:00
} cond append require
2007-09-20 18:09:08 -04:00
] when