]> gitweb.factorcode.org Git - factor.git/blob - extra/benchmark/crc32/crc32.factor
03d1585574bc5b23165c313d181d8a03547177f6
[factor.git] / extra / benchmark / crc32 / crc32.factor
1 USING: checksums checksums.crc32 io.encodings.ascii io.files kernel math ;
2 IN: benchmark.crc32
3
4 : crc32-file ( -- )
5     10 [
6         "vocab:mime/multipart/multipart-tests.factor"
7         crc32 checksum-file drop
8     ] times ;
9
10 MAIN: crc32-file