From 5a8354f1ad708ac3a02f4f49e7a1f0a19f0a9285 Mon Sep 17 00:00:00 2001 From: minneelyyyy Date: Sat, 19 Oct 2024 01:22:08 -0400 Subject: [PATCH] update readme (unimplemented feature now implmeented) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 622bc65..28c1e06 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Variables are **scoped** in Lamm, meaning they only exist in the single expressi Scope in Lamm consists of a single expression, such as `sqrt + ** a 2 ** b 2`. So then, what do I do when I need a variable for more than a single expression? There are multiple solutions depending on your needs. -### Multi-Statement Expression (half implemented) +### Multi-Statement Expression 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.