aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorc+12023-05-22 15:58:13 -0400
committerc+12023-05-22 15:58:13 -0400
commitd83d37ecd5682252f85af099c3353525f1cb1394 (patch)
tree150f6f0ca3a9c5c217a86cd50d84ea170026537e /examples
parent45b152974bb6965209287945fd706d3b0c2df9ba (diff)
yay :)
Diffstat (limited to 'examples')
-rw-r--r--examples/hello.halk6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/hello.halk b/examples/hello.halk
index 8b6b038..719ba93 100644
--- a/examples/hello.halk
+++ b/examples/hello.halk
@@ -1,9 +1,9 @@
` comments in backticks `
` preprocessor directives `
-#INCLUDE.'math', 'm'; ` bring the math library into scope, under the namespace 'm' `
-#INCLUDE.'io', ''; ` bring the io library into global scope (with no namespace) `
-
+#INCLUDE##math#
+#INCLUDE##io#
+` source code begins here `
str:hello = 'hello, '; ` variables must be given a value at declaration `