mirror of
https://github.com/anoma/juvix.git
synced 2024-12-15 18:13:56 +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;
|
||
|
}
|