String functions

String::append : String -> String -> String

Append two strings.

Examples

val a = String::append "Hello, " "World!"
//    = "Hello, World!"