summaryrefslogtreecommitdiff
path: root/docs/language/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/language/index.md')
-rw-r--r--docs/language/index.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/language/index.md b/docs/language/index.md
index ee2ea70..371ecf1 100644
--- a/docs/language/index.md
+++ b/docs/language/index.md
@@ -48,6 +48,7 @@ Underscores `_` can separate digits in a number
```text
100_000
1.100_000
+1_ // Invalid
```
## String Literals
@@ -179,6 +180,8 @@ Move loop to next iteration
```text
? condition { statements }
+? condition { true statements } { false statements }
+
? {
condition { statements }
{ default statements }