Hi Folks,


Thanks to Marcel's help on String format:  
I have a proposed version for the Rosetta Code entry for 99 bottles of beer

https://rosettacode.org/wiki/99_bottles_of_beer

|template|
Transcript clear.
template:='{1} bottles of beer on the wall
{2} bottles of beer
Take one down, pass it around
{3} bottles of beer on the wall'.

99 to: 1 by: -1 do:[:v |
  Transcript show: (template format: {(v asString) . (v asString) . ((v -1)  asString)}); cr; cr.
].
Transcript show: 'hic!'; cr.


Any improvements suggestions much appreciated.

If anybody has a Rosetta code account and wants to update that example, please do so.




cordially.