X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=forth.jl.git;a=blobdiff_plain;f=src%2Flib.4th;fp=src%2Flib.4th;h=87e1839de0ff2e29504aa39f4ef9ffff348e6793;hp=d8d819b984e0ca4670a07b68cd9ef6834068ed56;hb=acee38d57f2ee38911c4ed46bab9b7a864686c24;hpb=ef54433308b352a75aeb6026da1795495d61860c diff --git a/src/lib.4th b/src/lib.4th index d8d819b..87e1839 100644 --- a/src/lib.4th +++ b/src/lib.4th @@ -17,9 +17,29 @@ include lib_9_decompiler.4th include lib_10_misc.4th include lib_11_extensions.4th +: 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