export let count = 5 export func main() { var x = 1 while x <= count { println(x) x++ } }