Updated README.md

This commit is contained in:
2024-11-29 12:16:10 +11:00
parent 431893bf60
commit bb2e85e350
2 changed files with 25 additions and 2 deletions

View File

@@ -43,6 +43,18 @@ var immutable: string const = "Foobar";
//the assert keyword can check an expression, and takes an optional second parameter
assert immutable == "Fizzbuzz", "This message is sent to the terminal by default";
//if and while works
var count = 1;
while (count <= 10) {
if (count % 2 == 0) {
print "even";
}
else {
print "odd";
}
count += 1;
}
//NOTE: This section will be expanded as more features are implemented
```

11
scripts/count.toy Normal file
View File

@@ -0,0 +1,11 @@
//if and while works
var count = 1;
while (count <= 10) {
if (count % 2 == 0) {
print "even";
}
else {
print "odd";
}
count += 1;
}