This commit is contained in:
nora 2022-01-01 13:47:56 +01:00
parent 88a3a585e7
commit 4e30201be4
11 changed files with 222 additions and 20 deletions

View file

@ -1,5 +1,11 @@
print "hi";
let x = 5;
let is_bigger = "hallo" > "a";
let y = 0;
print (not is_bigger) or true;
if x < 0 {
y = x;
} else {
y = "hello it is smaller";
}
print y;