forked from starnakin/IronGOLEM
343 B
343 B
STRCAT
Strcat (string concatenate) is a function that takes two chars lists as a parameter and write the second at this end of the first (like strcat in C)
params
- chars list
- chars list
example
strcat("y", "o") "y" => "yo"
strcat("y", "") "y" => "y"
strcat("", "o") "" => "o"
strcat("hello ", "world!") => "hello world!"