remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / extra / benchmark / sum-file / sum-file.factor
blobbb7aebba62c46699bc465e2cccc89793c3ad9ea6
1 USING: io io.files math math.parser kernel prettyprint
2 benchmark.random io.encodings.ascii ;
3 IN: benchmark.sum-file
5 : sum-file-loop ( n -- n' )
6     readln [ string>number + sum-file-loop ] when* ;
8 : sum-file ( file -- )
9     ascii [ 0 sum-file-loop ] with-file-reader . ;
11 : sum-file-main ( -- )
12     random-numbers-path sum-file ;
14 MAIN: sum-file-main