You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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);
}