lila/examples/if_statement.lila

6 lines
51 B
Text

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