RosettaCodeData/Task/CRC-32/Zig/crc-32.zig

8 lines
209 B
Zig
Raw Permalink Normal View History

2023-09-01 09:35:06 -07:00
const std = @import("std");
const Crc32Ieee = std.hash.Crc32;
pub fn main() !void {
2025-02-27 18:35:13 -05:00
const res: u32 = Crc32Ieee.hash("The quick brown fox jumps over the lazy dog");
2023-09-01 09:35:06 -07:00
std.debug.print("{x}\n", .{res});
}