RosettaCodeData/Task/CRC-32/Zig/crc-32.zig
2025-02-27 18:35:13 -05:00

7 lines
209 B
Zig

const std = @import("std");
const Crc32Ieee = std.hash.Crc32;
pub fn main() !void {
const res: u32 = Crc32Ieee.hash("The quick brown fox jumps over the lazy dog");
std.debug.print("{x}\n", .{res});
}