RosettaCodeData/Task/CRC-32/OCaml/crc-32.ocaml
2023-07-01 13:44:08 -04:00

4 lines
157 B
Text

let () =
let s = "The quick brown fox jumps over the lazy dog" in
let crc = Zlib.update_crc 0l s 0 (String.length s) in
Printf.printf "crc: %lX\n" crc