Added directory structure

This commit is contained in:
Tristan B. Velloza Kildaire 2021-03-02 21:14:23 +02:00
parent 86ecf15416
commit 505764b8bb
3 changed files with 16 additions and 0 deletions

View File

@ -6,6 +6,8 @@
* SHOT!
*/
module tlang;
import std.stdio;
void main()

View File

@ -0,0 +1,8 @@
module commandline.args;
import jcli;
void parseCommandLine(string[] args)
{
/* TODO: Parse command-line options here */
}

View File

@ -0,0 +1,6 @@
module compiler.compiler;
void beginCompilation()
{
/* TODO: Begin compilation process, take in data here */
}