d8d819b984e0ca4670a07b68cd9ef6834068ed56
[forth.jl.git] / src / lib.4th
1 : \ IMMEDIATE
2         #IB @ >IN !
3 ; \ We can now comment!
4
5 \ Compile core definitions
6 \ (These files must be compiled in order!)
7
8 include lib_1_basic.4th
9 include lib_2_control.4th
10 include lib_3_input.4th
11 include lib_4_comments.4th
12 include lib_5_printnum.4th
13 include lib_6_strings.4th
14 include lib_7_variables.4th
15 include lib_8_vocab.4th
16 include lib_9_decompiler.4th
17 include lib_10_misc.4th
18 include lib_11_extensions.4th
19
20 : WELCOME
21     SKIP-WELCOME @ INVERT IF
22         ." Welcome to forth.jl!" CR CR
23     THEN
24 ;
25 welcome