RosettaCodeData/Task/CRC-32/Vala/crc-32-1.vala
2023-07-01 13:44:08 -04:00

6 lines
156 B
Vala

using ZLib.Utility;
void main() {
var str = (uint8[])"The quick brown fox jumps over the lazy dog".to_utf8();
stdout.printf("%lx\n", crc32(0, str));
}