bundle Default { class Count { function : Main(args : String[]) ~ Nil { i := 0; do { i->PrintLine(); i += 1; } while(i <> 0); } } }