script3.stx
author Claus Gittinger <cg@exept.de>
Tue, 02 Dec 2014 12:10:53 +0100
changeset 1367 c91058e8736a
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.