]> gitweb.factorcode.org Git - factor.git/blobdiff - core/checksums/crc32/crc32.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / core / checksums / crc32 / crc32.factor
index da3df72974b1255b3ace70009fb5c17283d0d160..f6f6870041649d54e588e64c2c9aa19c5b0ff881 100644 (file)
@@ -8,7 +8,7 @@ CONSTANT: crc32-polynomial 0xedb88320
 
 CONSTANT: crc32-table V{ }
 
-256 iota [
+256 <iota> [
     8 [
         [ 2/ ] [ even? ] bi [ crc32-polynomial bitxor ] unless
     ] times