9 lines
211 B
Text
9 lines
211 B
Text
|
|
$ ocaml
|
||
|
|
Objective Caml version 3.12.1
|
||
|
|
|
||
|
|
# let f s1 s2 sep = String.concat sep [s1; ""; s2];;
|
||
|
|
val f : string -> string -> string -> string = <fun>
|
||
|
|
# f "Rosetta" "Code" ":";;
|
||
|
|
- : string = "Rosetta::Code"
|
||
|
|
#
|