From 10e1be04d2ba08820ad30a9f27b01e702971c5dd Mon Sep 17 00:00:00 2001 From: minneelyyyy Date: Thu, 17 Oct 2024 02:03:28 -0400 Subject: [PATCH] update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6dd4cfc..e94a288 100644 --- a/README.md +++ b/README.md @@ -50,8 +50,8 @@ Scope in Lamm consists of a single expression, such as `sqrt + ** a 2 ** b 2`. S You can create a multi-statement expression using either `()` syntax or the `~` operator, which `()` is simple syntactic sugar for. In these, only the value of the last expression is returned, the rest get ignored. This is the perfect place to put stateful function calls. ``` -( - print "Hello, world!" +. x 12 ( + print + "my favorite number is " x print "Auf Wiedersehen!" ) ```