export func main() { var x = 1 while x <= 5 { if x == 3 { println("The value is 3") } else { println("The value is not 3") } x++ } }