8 lines
77 B
Text
8 lines
77 B
Text
fn main() {
|
|
x = 0;
|
|
if true {
|
|
set x = 42;
|
|
} else {
|
|
set x = 1337;
|
|
};
|
|
}
|