Files
hakorune/apps/tests/dev_sugar/print_when_fn.nyash

12 lines
155 B
Plaintext

// print! and when sugar test
static box Main {
main(args) {
@v = 41
when v + 1 == 42 {
print! 42
} else {
print!(0)
}
}
}