]> gitweb.factorcode.org Git - factor.git/blob - basis/bootstrap/io/io.factor
a38107fbabcd0ab749af06928b4adc91a752c0ac
[factor.git] / basis / bootstrap / io / io.factor
1 USING: system vocabs vocabs.loader kernel combinators
2 namespaces sequences io.backend ;
3 IN: bootstrap.io
4
5 "bootstrap.compiler" vocab [
6     "io." {
7         { [ "io-backend" get ] [ "io-backend" get ] }
8         { [ os unix? ] [ "unix" ] }
9         { [ os winnt? ] [ "windows.nt" ] }
10         { [ os wince? ] [ "windows.ce" ] }
11     } cond append require
12 ] when