Files
l2/strconcat.sl

36 lines
456 B
Plaintext
Raw Normal View History

2025-12-24 23:19:08 +01:00
import stdlib/stdlib.sl
import stdlib/mem.sl
2025-12-24 23:19:08 +01:00
import stdlib/io.sl
word strconcat
2025-12-24 23:19:08 +01:00
0 pick 3 pick +
dup
>r >r >r >r >r >r
5 rpick
alloc
2025-12-24 23:19:08 +01:00
r> r>
dup >r
memcpy
2025-12-24 23:19:08 +01:00
swap
r> dup -rot +
r> r>
memcpy
2025-12-24 23:19:08 +01:00
swap
3 pick
-
swap
drop
swap
0 rpick
nip
rot
drop
rdrop rdrop rdrop
end
2025-12-24 23:19:08 +01:00
word main
"hello world hello world hello " "world hello world hello world"
2025-12-24 23:19:08 +01:00
strconcat
puts
end