REM parameter is program name to be compiled, linked and run
REM format of entry is "complink program"
REM Note that the ".c" suffix is omitted
if NOT EXIST \turboc\marietta\%1.c GOTO END
copy \turboc\marietta\%1.c program.c
tcc -C -Iinclude -Llib -ms program lib\c_wndw.lib 
PAUSE examine compile for errors, then press any key
program
:END
