Skip to content

Commit 2e97aa6

Browse files
Update the README once again
1 parent a4d9210 commit 2e97aa6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,13 @@ You can look [here](CritLang/primes.crit) for more "real world" example.
3131
## Tips and Tricks
3232
You can have a else block after a while loop declaration to avoid a if statement.
3333
To have syntax highligting you can set the language to Golang or Rust, I've tested both and they look fine to me.
34-
34+
This language also has a `until` keyword, which is just like the `while` keyword but with the opposite condition.
35+
```rust
36+
until num > 10 {
37+
WriteLine(num);
38+
num = num + 1;
39+
}
40+
```
3541

3642
## TODOs
3743

0 commit comments

Comments
 (0)