IronGOLEM/wiki/strcat.md

14 lines
343 B
Markdown
Raw Permalink Normal View History

2023-07-26 06:26:06 -04:00
# 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
1. chars list
2. chars list
## example
```
strcat("y", "o") "y" => "yo"
strcat("y", "") "y" => "y"
strcat("", "o") "" => "o"
strcat("hello ", "world!") => "hello world!"
```