From 0442c025661ae1e0cc10a7447502281985068b27 Mon Sep 17 00:00:00 2001 From: Thomas lavocat Date: Fri, 29 Aug 2025 09:11:58 +0200 Subject: [PATCH] =?UTF-8?q?une=20id=C3=A9e=20jamais=20r=C3=A9ellement=20co?= =?UTF-8?q?mmenc=C3=A9e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 15 +++++++++++++++ dub.json | 9 +++++++++ source/app.d | 6 ++++++ 3 files changed, 30 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..9950066 --- /dev/null +++ b/.gitignore @@ -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 diff --git a/dub.json b/dub.json new file mode 100644 index 0000000..ae44ee7 --- /dev/null +++ b/dub.json @@ -0,0 +1,9 @@ +{ + "authors": [ + "faquin" + ], + "copyright": "Copyright © 2022, faquin", + "description": "C interpreter", + "license": "proprietary", + "name": "interpreter" +} \ No newline at end of file diff --git a/source/app.d b/source/app.d new file mode 100644 index 0000000..3be977b --- /dev/null +++ b/source/app.d @@ -0,0 +1,6 @@ +import std.stdio; + +void main() +{ + writeln("Edit source/app.d to start your project."); +}