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