mirror of
https://github.com/anoma/juvix.git
synced 2024-12-14 08:27:03 +03:00
14 lines
146 B
Plaintext
14 lines
146 B
Plaintext
-- arithmetic type mismatch
|
|
|
|
function f(integer) : integer {
|
|
push "a";
|
|
push arg[0];
|
|
add;
|
|
ret;
|
|
}
|
|
|
|
function main() {
|
|
push 1;
|
|
tcall f;
|
|
}
|