7 lines
163 B
Text
7 lines
163 B
Text
let check str =
|
|
Printf.printf " %b -- %s\n" (pangram str) str
|
|
|
|
let () =
|
|
check "this is a sentence";
|
|
check "The quick brown fox jumps over the lazy dog.";
|
|
;;
|