5 lines
75 B
Text
5 lines
75 B
Text
|
|
let () =
|
||
|
|
let s = ", world" in
|
||
|
|
let s = "Hello" ^ s in
|
||
|
|
print_endline s
|