mirror of
https://github.com/anoma/juvix.git
synced 2024-12-15 10:03:22 +03:00
11 lines
124 B
Plaintext
11 lines
124 B
Plaintext
-- branch type mismatch
|
|
|
|
function main() {
|
|
push true;
|
|
br {
|
|
true: { push "a"; }
|
|
false: { push 1; }
|
|
};
|
|
ret;
|
|
}
|