2009-04-17 18:55:01 -04:00
|
|
|
USING: checksums checksums.md5 sequences byte-arrays kernel ;
|
2008-02-27 20:24:50 -05:00
|
|
|
IN: benchmark.md5
|
|
|
|
|
2009-01-07 04:32:26 -05:00
|
|
|
: md5-file ( -- )
|
2009-04-17 18:55:01 -04:00
|
|
|
2000000 iota >byte-array md5 checksum-bytes drop ;
|
2008-02-27 20:24:50 -05:00
|
|
|
|
2009-01-07 04:32:26 -05:00
|
|
|
MAIN: md5-file
|