repo.or.cz
/
factor
/
jcg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git]
/
extra
/
benchmark
/
crc32
/
crc32.factor
blob
2fea4eb1f198062a23bf50dc5c995f7fa002e0df
1
USING: checksums checksums.crc32 io.encodings.ascii io.files kernel math ;
2
IN: benchmark.crc32
3
4
: crc32-file ( -- )
5
10 [
6
"resource:basis/mime/multipart/multipart-tests.factor"
7
crc32 checksum-file drop
8
] times ;
9
10
MAIN: crc32-file