From 0c6311b3eb7a5a6107b03273665a437fea1217aa Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Tue, 2 Mar 2021 21:03:55 +0200 Subject: [PATCH] Initial commit --- .gitignore | 15 +++++++++++++++ dub.json | 9 +++++++++ source/app.d | 14 ++++++++++++++ 3 files changed, 38 insertions(+) create mode 100644 .gitignore create mode 100644 dub.json create mode 100644 source/app.d diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2876a4b --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +.dub +docs.json +__dummy.html +docs/ +/tlang +tlang.so +tlang.dylib +tlang.dll +tlang.a +tlang.lib +tlang-test-* +*.exe +*.o +*.obj +*.lst diff --git a/dub.json b/dub.json new file mode 100644 index 0000000..db71864 --- /dev/null +++ b/dub.json @@ -0,0 +1,9 @@ +{ + "authors": [ + "Tristan B. Kildaire" + ], + "copyright": "Copyright © 2021, Tristan B. Kildaire", + "description": "The official Tristan language compiler project", + "license": "GPLv3", + "name": "tlang" +} \ No newline at end of file diff --git a/source/app.d b/source/app.d new file mode 100644 index 0000000..ed5204e --- /dev/null +++ b/source/app.d @@ -0,0 +1,14 @@ +/** +* Tristan's programming language +* +* This is TOP SECRET code, not for RELEASE! +* Violators WILL BE PUT UP AGAINST A WALL AND +* SHOT! +*/ + +import std.stdio; + +void main() +{ + +}