RosettaCodeData/Task/CRC-32/Seed7/crc-32.seed7
2014-01-17 05:34:36 +00:00

7 lines
184 B
Text

$ include "seed7_05.s7i";
include "crc32.s7i";
const proc: main is func
begin
writeln(ord(crc32("The quick brown fox jumps over the lazy dog")) radix 16 lpad0 8);
end func;