home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turbo Toolbox
/
Turbo_Toolbox.iso
/
1991
/
04
/
txl
/
3_preis
/
fast
/
mainint.c
< prev
next >
Wrap
Text File
|
1990-11-17
|
615b
|
28 lines
/*main.c
Kopfprogramm für den TXL-Interpreter
Einen frohen Mut wünschen wir allen Interpreterbastlern!
(c) 1989/90 Michael Beising & TOOLBOX
Version 1.2 vom 19.06.90
*/
#define COPYRIGHT "(c) 1990 Michael Beising & TOOLBOX"
#define VERSION "1.2"
#include <stdio.h>
#include <stdlib.h>
#include "interp.h"
void
main (void)
{
printf ("\n>>>>>>>>>>>>> Mini-Interpreter für TXL <<<<<<<<<<<<<");
printf ("\n** %s Version %s **\n\n",COPYRIGHT,VERSION);
printf ("\n< F1 für Hilfe >\n\n");
InterAct (); /* Hauptschleife des Interpreters */
return;
}
/* Ende des files MAININT.C */