diff options
author | c+1 | 2023-05-10 10:15:49 -0400 |
---|---|---|
committer | c+1 | 2023-05-10 10:15:49 -0400 |
commit | 780bb78d78f74f25e8c781b2222b712803ebf66b (patch) | |
tree | b9ad0cedfe5422784607709ced71158113719e55 /examples | |
parent | 572d9be5570122cf52da01b7399c1baba82d74a1 (diff) |
you saw nothing
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/] |