une idée jamais réellement commencée
This commit is contained in:
15
.gitignore
vendored
Normal file
15
.gitignore
vendored
Normal 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
9
dub.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"authors": [
|
||||
"faquin"
|
||||
],
|
||||
"copyright": "Copyright © 2022, faquin",
|
||||
"description": "C interpreter",
|
||||
"license": "proprietary",
|
||||
"name": "interpreter"
|
||||
}
|
||||
6
source/app.d
Normal file
6
source/app.d
Normal file
@@ -0,0 +1,6 @@
|
||||
import std.stdio;
|
||||
|
||||
void main()
|
||||
{
|
||||
writeln("Edit source/app.d to start your project.");
|
||||
}
|
||||
Reference in New Issue
Block a user