7 lines
No EOL
147 B
Text
7 lines
No EOL
147 B
Text
fun f (x) =
|
|
if (x >? 0) then { "OK" } else { "KO" }
|
|
|
|
let test =
|
|
print_string ("This test is ");
|
|
print_string (f (33));
|
|
print_string (".\n") |