7 lines
184 B
Text
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;
|