Slang/tests/strcat.sl

7 lines
81 B
Plaintext

#| Slang `strcat' test. |#
str a = "a"
str b = "B"
str c = a+b
stdio.println(c)