From 082d63aa2b5393739d109d67a74b72bd439868c3 Mon Sep 17 00:00:00 2001 From: mysticbbs Date: Sun, 18 Mar 2012 18:31:33 -0400 Subject: [PATCH] Added copyyear --- mystic/mplc.pas | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/mystic/mplc.pas b/mystic/mplc.pas index d96be6b..9867748 100644 --- a/mystic/mplc.pas +++ b/mystic/mplc.pas @@ -19,16 +19,18 @@ // // ==================================================================== -{$I m_OPS.PAS} - Program MPLC; +{$I M_OPS.PAS} + Uses + DOS, m_Output, m_Strings, - Dos, MPL_Compile; +{$I RECORDS.PAS} + Var SavedX : Byte; Console : TOutput; @@ -63,7 +65,7 @@ Begin Console := TOutput.Create(True); Console.WriteLine (#13#10'Mystic BBS Programming Language Compiler Version ' + mysVersion); - Console.WriteLine ('Copyright (C) 1997-2011 By James Coyle. All Rights Reserved.'#13#10); + Console.WriteLine ('Copyright (C) ' + mysCopyYear + ' By James Coyle. All Rights Reserved.'#13#10); If ParamCount = 0 Then WriteLn ('MPLC [filename] or MPLC -ALL')