From d2cc6a8e93f2fdd27ed859513a9fe1a1c62201bb Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Fri, 3 Mar 2023 17:31:46 +0200 Subject: [PATCH] Testing - Added a playground where I test stuff --- source/eventy/test.d | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 source/eventy/test.d diff --git a/source/eventy/test.d b/source/eventy/test.d new file mode 100644 index 0000000..45499c9 --- /dev/null +++ b/source/eventy/test.d @@ -0,0 +1,10 @@ +module eventy.test; + +import std.stdio; + +unittest +{ + writeln((()=>(2)) ()); + + +} \ No newline at end of file