X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=forth.jl.git;a=blobdiff_plain;f=src%2Flib.4th;h=87e1839de0ff2e29504aa39f4ef9ffff348e6793;hp=86731cfdc64690f0e9ba9607b88d9e334cde462f;hb=acee38d57f2ee38911c4ed46bab9b7a864686c24;hpb=492989e5e479cebefe9213a0c350534528d5f819 diff --git a/src/lib.4th b/src/lib.4th index 86731cf..87e1839 100644 --- a/src/lib.4th +++ b/src/lib.4th @@ -15,5 +15,31 @@ 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 -.( done.) cr +: LICENSE + CR + ." This program is free software: you can redistribute it and/or modify" CR + ." it under the terms of the GNU General Public License as published by" CR + ." the Free Software Foundation, either version 3 of the License, or" CR + ." (at your option) any later version." CR + ." " CR + ." This program is distributed in the hope that it will be useful," CR + ." but WITHOUT ANY WARRANTY; without even the implied warranty of" CR + ." MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the" CR + ." GNU General Public License for more details." CR + ." " CR + ." You should have received a copy of the GNU General Public License" CR + ." along with this program. If not, see http://www.gnu.org/licenses/." CR +; + +: WELCOME + SKIP-WELCOME @ INVERT IF + ." Welcome to forth.jl!" CR CR + + ." Copyright (C) 2016 Tim Vaughan" CR + ." This program comes with ABSOLUTELY NO WARRANY; for details type 'license'" CR + ." Type 'bye' or press Ctrl+D to exit." CR CR + THEN +; +welcome