aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/README.md b/README.md
index 113cf4db..1e6c9b8c 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,12 @@ Tomo is a programming language designed to anticipate and influence the
language design decisions of the future.
```
-say("Hello world!")
+func greeting(name:Text)->Text
+ greeting := "hello {name}!"
+ return greeting:title()
+
+>> greeting("world")
+= "Hello World!"
```
Check out the [test/](test/) folder to see some examples.