summaryrefslogtreecommitdiff
path: root/samples/invertdiv.golem
diff options
context:
space:
mode:
Diffstat (limited to 'samples/invertdiv.golem')
-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;
+}