mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
Updated README.md
This commit is contained in:
11
scripts/count.toy
Normal file
11
scripts/count.toy
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user