Files
lila/examples/if_expr.lila

8 lines
57 B
Plaintext

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