Keywords in Julia are predefined words that have a definite meaning to the compiler. These keywords can’t be used to name variables.
'break'
keyword in Julia is used to exit from a loop immediately. Whenever the break keyword is executed, the compiler immediately stops iterating over further values and sends the execution pointer out of the loop.
Syntax:
loop condition
statement
statement
break
statement
end
Example 1:
for i in 1 : 10
if i = = 6
break
else
println(i)
end
end
|
Output:
1
2
3
4
5
Example 2:
i = 0
while true
global i = i + 1
if i = = 6
break
else
println(i)
end
end
|
Output:
1
2
3
4
5
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
26 Mar, 2020
Like Article
Save Article