Files
lila/examples/if_statement.lila
2024-03-08 17:38:53 +01:00

7 lines
51 B
Plaintext

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