RosettaCodeData/Task/CRC-32/Vala/crc-32-1.vala
2020-02-17 23:21:07 -08: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));
}