RosettaCodeData/Task/Rot-13/OCaml/rot-13-3.ml

6 lines
142 B
OCaml
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let () =
try while true do
String.iter (fun c -> print_char (rot13 c)) (read_line());
print_newline()
done with End_of_file -> ()