This commit is contained in:
nora 2022-01-01 14:23:07 +01:00
parent a93412c3cd
commit 09deb07e85
4 changed files with 36 additions and 21 deletions

View file

@ -1,11 +1,3 @@
let x = 5;
let y = 0;
if x < 0 {
y = x;
} else {
y = "hello it is smaller";
}
print y;
if 54 > 53 {
print "hallo conny";
}