X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?a=blobdiff_plain;f=src%2Flib.4th;h=d8d819b984e0ca4670a07b68cd9ef6834068ed56;hb=74030e7ce7cbe674ac71767cff6e9c3f3564c3b0;hp=62b826ff67a55361e68cc763482d93fdf4745f57;hpb=a8d323108d89b2438677598d1b1b592191e72a0b;p=forth.jl.git diff --git a/src/lib.4th b/src/lib.4th index 62b826f..d8d819b 100644 --- a/src/lib.4th +++ b/src/lib.4th @@ -1,5 +1,5 @@ : \ IMMEDIATE - #TIB @ >IN ! + #IB @ >IN ! ; \ We can now comment! \ Compile core definitions @@ -7,11 +7,19 @@ include lib_1_basic.4th include lib_2_control.4th -include lib_3_comments.4th -include lib_4_printnum.4th -include lib_5_strings.4th -include lib_6_variables.4th -include lib_7_printwords.4th -include lib_8_decompiler.4th +include lib_3_input.4th +include lib_4_comments.4th +include lib_5_printnum.4th +include lib_6_strings.4th +include lib_7_variables.4th +include lib_8_vocab.4th +include lib_9_decompiler.4th +include lib_10_misc.4th +include lib_11_extensions.4th -include lib_9_misc.4th +: WELCOME + SKIP-WELCOME @ INVERT IF + ." Welcome to forth.jl!" CR CR + THEN +; +welcome