RosettaCodeData/Task/CRC-32/OCaml/crc-32.ml
2024-10-16 18:07:41 -07:00

4 lines
157 B
OCaml

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