script3.stx
author Claus Gittinger <cg@exept.de>
Thu, 23 Jul 2015 22:13:04 +0200
changeset 1380 7f98514ac3bd
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.