Merge branch 'master' of git://factorcode.org/git/factor
[factor/jcg.git] / basis / bootstrap / io / io.factor
blobb9a49b48b82d43bbd979f740e29ea36cf00064fd
1 USING: system vocabs vocabs.loader kernel combinators
2 namespaces sequences io.backend accessors ;
3 IN: bootstrap.io
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