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});
|
|
|
|
|
}
|