Initial commit

This commit is contained in:
Tristan B. Velloza Kildaire 2021-03-02 21:03:55 +02:00
commit 0c6311b3eb
3 changed files with 38 additions and 0 deletions

15
.gitignore vendored Normal file
View File

@ -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

9
dub.json Normal file
View File

@ -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"
}

14
source/app.d Normal file
View File

@ -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()
{
}