aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorc+12023-05-10 10:15:49 -0400
committerc+12023-05-10 10:15:49 -0400
commit780bb78d78f74f25e8c781b2222b712803ebf66b (patch)
treeb9ad0cedfe5422784607709ced71158113719e55 /examples
parent572d9be5570122cf52da01b7399c1baba82d74a1 (diff)
you saw nothing
Diffstat (limited to 'examples')
-rw-r--r--examples/hello.halk2
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/]