We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4d9210 commit 2e97aa6Copy full SHA for 2e97aa6
README.md
@@ -31,7 +31,13 @@ You can look [here](CritLang/primes.crit) for more "real world" example.
31
## Tips and Tricks
32
You can have a else block after a while loop declaration to avoid a if statement.
33
To have syntax highligting you can set the language to Golang or Rust, I've tested both and they look fine to me.
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
+```
41
42
## TODOs
43
0 commit comments