I'm looking for a way to exit out of a parent loop without labeled loops. It's just since I think my code looks a bit odd when there's some loops that are labled and others that aren't.
mylabel: for(arr) |c| {
foo(c);
}
for(arr2) |c| {
bar(c)
}
I don't know if it's just me or if there's other options, but I was just curious.