lila/examples/if_expr.lila

7 lines
57 B
Text

fn main() {
val = if true {
42
} else {
1337
};
}