CRC-32: Difference between revisions

261 bytes added ,  2 months ago
no edit summary
m (→‎{{header|Wren}}: Minor tidy)
No edit summary
Line 388:
{{out}}
<pre>0x414fa339</pre>
 
=={{header|Bait}}==
===Library===
<syntaxhighlight lang="bait">
import hash.crc32
 
fun main() {
text := 'The quick brown fox jumps over the lazy dog'
sum := crc32.checksum(text.bytes())
println(sum.hex())
}
</syntaxhighlight>
 
{{out}}
<pre>
414fa339
</pre>
 
=={{header|C}}==
24

edits