\ -*- mode: forth -*- \ $Id: sumcol.gforth,v 1.2 2001/05/24 03:54:30 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 \ th-th-that's all folks!