factor/library/bootstrap/init.factor

18 lines
463 B
Factor

! Copyright (C) 2004, 2006 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
IN: kernel-internals
USING: assembler errors io io-internals kernel math namespaces
parser threads words ;
: boot ( -- )
init-namespaces
cell \ cell set
millis init-random
init-io
"HOME" os-env [ "." ] unless* "~" set
init-error-handler
init-threads
default-cli-args
parse-command-line
"null-stdio" get [ stdio off ] when ;