99 Bottles of Beer/Shell: Difference between revisions

m
m (added whitespace before the TOC (table of contents).)
Line 66:
<lang AutoHotkey>99bottles()
esc::exitapp
 
99bottles(x:=99) {
ToolTip, % Format("{1:} {2:} of beer on the wall, {1:L} {2:} of beer.{4:}{3:} {2:} of beer on the wall!"
,(x=0?x:"No more":x)
,(x=1?"bottle":"bottles")
,(x=1?"no more":x=0?99:x-1)
,(x=0 ?"`nGonYou totake theone storedown andpass buyit some morearound, ":"`nYounGo taketo onethe downstore passand itbuy aroundsome more, ")), 500, 300
sleep 99
x>0?99bottles(x-1):return
}</lang>