une idée jamais réellement commencée

This commit is contained in:
2025-08-29 09:11:58 +02:00
commit 0442c02566
3 changed files with 30 additions and 0 deletions

15
.gitignore vendored Normal file
View File

@@ -0,0 +1,15 @@
.dub
docs.json
__dummy.html
docs/
/interpreter
interpreter.so
interpreter.dylib
interpreter.dll
interpreter.a
interpreter.lib
interpreter-test-*
*.exe
*.o
*.obj
*.lst

9
dub.json Normal file
View File

@@ -0,0 +1,9 @@
{
"authors": [
"faquin"
],
"copyright": "Copyright © 2022, faquin",
"description": "C interpreter",
"license": "proprietary",
"name": "interpreter"
}

6
source/app.d Normal file
View File

@@ -0,0 +1,6 @@
import std.stdio;
void main()
{
writeln("Edit source/app.d to start your project.");
}