summaryrefslogtreecommitdiff
path: root/samples
diff options
context:
space:
mode:
authorkdx <kikoodx@paranoici.org>2023-12-05 16:17:11 +0100
committerkdx <kikoodx@paranoici.org>2023-12-05 16:17:11 +0100
commit29a380366949cad972f419f205f04f024deca7de (patch)
tree4a473bba46d74ca0496023de47dc4457e14d5149 /samples
parent07f9061b1287212cca8bdea2f07b7262e6d079b7 (diff)
downloadgolem-29a380366949cad972f419f205f04f024deca7de.tar.gz
inverted division operator
Diffstat (limited to 'samples')
-rw-r--r--samples/invertdiv.golem5
1 files changed, 5 insertions, 0 deletions
diff --git a/samples/invertdiv.golem b/samples/invertdiv.golem
new file mode 100644
index 0000000..f5413ba
--- /dev/null
+++ b/samples/invertdiv.golem
@@ -0,0 +1,5 @@
+main() {
+ local x = 5, y = 20;
+ dbg x / y;
+ dbg x \ y;
+}