diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/hello.halk | 6 |
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 ` |