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

6 lines
142 B
Text
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
let () =
try while true do
String.iter (fun c -> print_char (rot13 c)) (read_line());
print_newline()
done with End_of_file -> ()