mirror of
https://github.com/anoma/juvix.git
synced 2024-12-12 14:28:08 +03:00
4be4d58d30
- Progress for #1742 * Adds builtin primitives for operations on strings and removes the corresponding foreign & compile blocks.
14 lines
156 B
Plaintext
14 lines
156 B
Plaintext
-- string instructions
|
|
|
|
function main() {
|
|
push ".\n";
|
|
push 20;
|
|
push "123";
|
|
atoi;
|
|
add;
|
|
show;
|
|
strcat;
|
|
alloc write;
|
|
ret;
|
|
}
|