2015-07-27 00:20:55 -04:00
|
|
|
USING: accessors combinators namespaces sequences system vocabs
|
|
|
|
;
|
2007-09-20 18:09:08 -04:00
|
|
|
IN: bootstrap.io
|
|
|
|
|
2011-02-27 16:55:43 -05:00
|
|
|
"bootstrap.compiler" require
|
|
|
|
"bootstrap.threads" require
|
|
|
|
|
2011-02-27 18:02:20 -05:00
|
|
|
"io.backend." {
|
|
|
|
{ [ "io-backend" get ] [ "io-backend" get ] }
|
|
|
|
{ [ os unix? ] [ "unix." os name>> append ] }
|
|
|
|
{ [ os windows? ] [ "windows" ] }
|
|
|
|
} cond append require
|