strcat : string -> string -> string
- strcat "1" ""; > val it = "1" : string - strcat "hello" "world"; > val it = "helloworld" : string - strcat "hello" (strcat " " "world"); > val it = "hello world" : string