From: Tim Vaughan Date: Fri, 24 Feb 2017 23:45:17 +0000 (+1300) Subject: Added licensing to startup message. X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=forth.jl.git;a=commitdiff_plain;h=acee38d57f2ee38911c4ed46bab9b7a864686c24 Added licensing to startup message. --- 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