5 lines
76 B
OCaml
5 lines
76 B
OCaml
|
type t = string
|
||
|
let of_string s = s
|
||
|
let cat a b = a ^ b
|
||
|
let to_string r = r
|