tlang/source/tlang/app.d

22 lines
383 B
D

/**
* Tristan's programming language
*
* This is TOP SECRET code, not for RELEASE!
* Violators WILL BE PUT UP AGAINST A WALL AND
* SHOT!
*/
module tlang;
import std.stdio;
import commandline.args;
void main(string[] args)
{
/* TODO: Replace with something else */
writeln("tlang NO_PUBLISH_RELEASE");
/* Parse the command-line arguments */
parseCommandLine(args);
}