\ -*- mode: forth -*-
\ $Id: sumcol.bigforth,v 1.1 2001/06/24 22:23:53 doug Exp $
\ http://www.bagley.org/~doug/shootout/
256 constant max-line
create line-buffer max-line 1 + allot
: sumcol
0
begin
0.0 line-buffer
line-buffer max-line stdin read-line throw
while
>number drop drop d>s +
repeat
drop drop drop drop 1 u.r cr ;
sumcol
bye