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