זרימת בקרה¶ if / elseif / else¶ x = 7 if x > 10 println("גדול") elseif x > 5 println("בינוני") else println("קטן") end לולאת for¶ s = 0 for i in 1:5 s += i end s while¶ n = 3 while n > 0 println(n) n -= 1 end