Fixed the sumcol benchmark to obey the new type for read-line.

This commit is contained in:
Vincent St-Amour 2010-06-15 15:44:40 -04:00
parent 72ec18cc68
commit e0b880d1ea

View File

@ -1,4 +1,4 @@
(for/fold: : Number
([acc : Number 0])
([n : String (in-lines)])
([n : (U String EOF) (in-lines)])
(+ acc (assert (string->number n))))