factor/library/bootstrap/init.factor

17 lines
431 B
Factor
Raw Normal View History

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
USING: io-internals namespaces parser stdio threads words ;
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
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 ;
"Good morning!" print
flush
"/library/bootstrap/boot-stage2.factor" run-resource