99 bottles of beer: Difference between revisions

Content deleted Content added
Sonia (talk | contribs)
→‎{{header|Go}}: task conformance + lang tag
Line 1,975:
 
=={{header|Go}}==
<lang Gogo>package main
import "fmt"
Line 1,986:
return ""
}
for i := 599; i > 0; i-- {
fmt.Printf("%d bottle%s of beer on the wall\n", i, cardinality(i))
fmt.Printf("%d bottle%s of beer\n", i, cardinality(i))