This commit is contained in:
nora 2022-01-04 21:35:45 +01:00
parent a4dfbb5cd3
commit 48f2bee7f0
8 changed files with 85 additions and 16 deletions

View file

@ -1,3 +1,8 @@
if 54 > 53 {
print "hallo conny";
}
let i = 0;
while i < 100 {
print i;
i = i + 1;
}
print "done";