Updating non-core libraries for monotonic? change
[factor/jcg.git] / basis / bootstrap / finish-bootstrap.factor
blob36f6291bc6f7bb31ca9617184182ad7a11c00919
1 USING: init command-line debugger system continuations
2 namespaces eval kernel vocabs.loader io ;
5     boot
6     do-init-hooks
7     [
8         (command-line) parse-command-line
9         load-vocab-roots
10         run-user-init
11         "e" get [ eval ] when*
12         ignore-cli-args? not script get and
13         [ run-script ] [ "run" get run ] if*
14         output-stream get [ stream-flush ] when*
15         0 exit
16     ] [ print-error 1 exit ] recover
17 ] set-boot-quot