dilaria/test.dil
2022-01-01 13:47:56 +01:00

11 lines
No EOL
97 B
Text

let x = 5;
let y = 0;
if x < 0 {
y = x;
} else {
y = "hello it is smaller";
}
print y;