diff --git a/source/app.d b/source/tlang/app.d similarity index 92% rename from source/app.d rename to source/tlang/app.d index ed5204e8..2a818997 100644 --- a/source/app.d +++ b/source/tlang/app.d @@ -6,6 +6,8 @@ * SHOT! */ +module tlang; + import std.stdio; void main() diff --git a/source/tlang/commandline/args.d b/source/tlang/commandline/args.d new file mode 100644 index 00000000..391c0495 --- /dev/null +++ b/source/tlang/commandline/args.d @@ -0,0 +1,8 @@ +module commandline.args; + +import jcli; + +void parseCommandLine(string[] args) +{ + /* TODO: Parse command-line options here */ +} \ No newline at end of file diff --git a/source/tlang/compiler/compiler.d b/source/tlang/compiler/compiler.d new file mode 100644 index 00000000..d645a8b8 --- /dev/null +++ b/source/tlang/compiler/compiler.d @@ -0,0 +1,6 @@ +module compiler.compiler; + +void beginCompilation() +{ + /* TODO: Begin compilation process, take in data here */ +} \ No newline at end of file