script3.stx
author Claus Gittinger <cg@exept.de>
Mon, 09 Dec 2019 20:55:05 +0100
changeset 1612 1fa5fcfe1987
parent 1498 71eac66f2d96
permissions -rwxr-xr-x
resource files for mingw

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

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

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