From beb929484b32eda79d0cc3f272120f1c852af296 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 9 Mar 2024 23:16:43 -0500 Subject: [PATCH] Slightly improved readme --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 113cf4d..1e6c9b8 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.