lila/examples/if_else_statement.lila

8 lines
77 B
Text

fn main() {
x = 0;
if true {
set x = 42;
} else {
set x = 1337;
};
}