script3.stx
author Jan Vrany <jan.vrany@labware.com>
Thu, 06 Aug 2020 09:33:44 +0100
branchjv
changeset 1626 62ac134d4f7f
parent 1347 40c47f6d2dc6
child 1498 71eac66f2d96
permissions -rwxr-xr-x
`smalltalk`: remove trailing spaces from UNIX launcher script

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

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