12 lines
292 B
Text
12 lines
292 B
Text
/**
|
|
<doc>CRC32 in Neko</doc>
|
|
**/
|
|
|
|
var int32_new = $loader.loadprim("std@int32_new", 1)
|
|
var update_crc32 = $loader.loadprim("zlib@update_crc32", 4)
|
|
|
|
var crc = int32_new(0)
|
|
var txt = "The quick brown fox jumps over the lazy dog"
|
|
|
|
crc = update_crc32(crc, txt, 0, $ssize(txt))
|
|
$print(crc, "\n")
|