diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/hello.halk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hello.halk b/examples/hello.halk index 113d7da..e6dc1a4 100644 --- a/examples/hello.halk +++ b/examples/hello.halk @@ -11,7 +11,7 @@ let.PI => math/PI; [namespaces are accesse [constants are denoted with a '=>'] fn.greeting,to -> { [functions defined with: `fn.<name>,<argument>,..., -> {<body>};`] - let.message -> str.cat.hello,to; [functions are right-associative] + let.message -> strcat.hello,to; [functions are right-associative] stdo.message; [since 'io' was brought into global scope, we do not prefix it with a namespace/] |