script3.stx
author Claus Gittinger <cg@exept.de>
Fri, 13 Jun 2014 10:16:26 +0200
changeset 1352 d56b9df810c5
parent 1347 40c47f6d2dc6
child 1498 71eac66f2d96
permissions -rwxr-xr-x
*** empty log message ***

#!stx --script
"/
"/ a word count script
"/
|wc|

wc := 0.
[Stdin atEnd] whileFalse:[
    wc := wc + Stdin nextLine asCollectionOfWords size.
].
wc printCR.