/* 99 Bottles of Beer in Vala (live.gnome.org/Vala) by Kahnamta, Apr 15 2007 */ using GLib; public class Beer { private int bottles = 99; public void drink() { if (bottles > 2) { stdout.printf("%d bottles of beer on the wall.\n", bottles); stdout.printf("%d bottles of beer.\n", bottles); s