script3.stx
author Claus Gittinger <cg@exept.de>
Wed, 27 Mar 2019 23:35:00 +0100
changeset 1594 3aa76efb2c47
parent 1498 71eac66f2d96
permissions -rwxr-xr-x
*** empty log message ***

#!/usr/bin/env stx --script

"/
"/ a word count script
"/
|wc|

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