# $Id: sumcol.mawk,v 1.1 2001/04/26 17:02:01 doug Exp $ # http://www.bagley.org/~doug/shootout/ BEGIN { delete ARGV; tot = 0 } { tot += $1 } END { print tot }