Empty string: Difference between revisions

Content deleted Content added
No edit summary
Line 297:
let s1 = ""
and s2 = "not empty" in
Printf.printf "s1 empty? %bB\n" (is_string_empty s1);
Printf.printf "s2 empty? %bB\n" (is_string_empty s2);
;;</lang>