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 ] }
|
|
|
|
{ [ unix? ] [ "unix" ] }
|
|
|
|
{ [ winnt? ] [ "windows.nt" ] }
|
|
|
|
{ [ wince? ] [ "windows.ce" ] }
|
|
|
|
} cond append require
|
2007-09-20 18:09:08 -04:00
|
|
|
] when
|