7 lines
134 B
Text
7 lines
134 B
Text
|
let test =
|
||
|
let x = "This test is KO.\n";
|
||
|
let x = (
|
||
|
let x = "This test is";
|
||
|
print_string (x)
|
||
|
);
|
||
|
print_string (" OK!\n")
|