StardustPL / Stardust

"A programming language that doesn't make me angry to use it."
https://StardustPL.GitHub.IO/
The Unlicense
4 stars 0 forks source link

Planning: labeled break and continue #43

Open LB-- opened 8 years ago

LB-- commented 8 years ago

This is a must-have. Any block of code (anonymous, for, switch, while, case, etc.) can be labeled, and then break <label>; and continue <label>; will specify which block to break or continue. Extremely useful for certain algorithms, and convenient in many other cases.