import ballerina/io; public function main() { int v = 0; while true { v += 1; io:println(v); if v % 6 == 0 { break; } } }