aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorc+12023-05-05 17:22:33 -0400
committerc+12023-05-05 17:22:33 -0400
commit3c1b649f9f375c1b3b1cdf0996960fdee3b91514 (patch)
tree49400aa0ca2c0022602d241c2dee0b96b9d55b4b
parentfb70aba912dcd540043eb983bce9cef527b4abfb (diff)
HALK
-rw-r--r--examples/hello.halk7
1 files changed, 5 insertions, 2 deletions
diff --git a/examples/hello.halk b/examples/hello.halk
index 8a441cc..a7c7ed5 100644
--- a/examples/hello.halk
+++ b/examples/hello.halk
@@ -1,3 +1,6 @@
-[nice & simple]
+[hello world in HALK.]
let it = "Hello, World!";
-say it;
+
+fn main = /
+ say it;
+\