import ballerina/io; public function main() { int value = 0; boolean ok = true; while ok { value += 1; io:println(value); ok = value % 6 != 0; } }