2005-04-16 00:23:27 -04:00
|
|
|
! Copyright (C) 2004, 2005 Slava Pestov.
|
|
|
|
! See http://factor.sf.net/license.txt for BSD license.
|
2004-12-17 21:46:19 -05:00
|
|
|
IN: kernel
|
2005-06-19 17:50:35 -04:00
|
|
|
USING: io-internals namespaces parser io threads words ;
|
2004-08-23 02:15:10 -04:00
|
|
|
|
2004-07-16 02:26:21 -04:00
|
|
|
: boot ( -- )
|
2004-08-20 18:48:08 -04:00
|
|
|
#! Initialize an interpreter with the basic services.
|
2005-04-16 00:23:27 -04:00
|
|
|
global >n
|
2005-02-07 18:04:49 -05:00
|
|
|
init-threads
|
2005-04-23 17:42:42 -04:00
|
|
|
init-io
|
2004-07-30 16:22:20 -04:00
|
|
|
"HOME" os-env [ "." ] unless* "~" set
|
2004-08-20 18:48:08 -04:00
|
|
|
init-search-path ;
|