forked from starnakin/IronGOLEM
Add wiki/strcat.md
This commit is contained in:
parent
57de93e799
commit
78bc62c044
14
wiki/strcat.md
Normal file
14
wiki/strcat.md
Normal file
@ -0,0 +1,14 @@
|
||||
# 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!"
|
||||
```
|
Loading…
Reference in New Issue
Block a user