mirror of
https://github.com/Noratrieb/dilaria.git
synced 2026-01-14 17:35:03 +01:00
11 lines
No EOL
97 B
Text
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; |