From acee38d57f2ee38911c4ed46bab9b7a864686c24 Mon Sep 17 00:00:00 2001 From: Tim Vaughan Date: Sat, 25 Feb 2017 12:45:17 +1300 Subject: [PATCH] Added licensing to startup message. --- src/lib.4th | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) 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 -- 2.20.1