RosettaCodeData/Task/Interactive-programming/OCaml/interactive-programming-1.ocaml
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

8 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"
#