[BUG]: Break is exiting the program; not only the loop it self.
Almas-Ali opened this issue · 0 comments
Almas-Ali commented
Describe the bug
Check this peace of code here: examples/loops.rn#L21
Screenshots or Code snippets
for i in [1, 2, 3, 4, 5] {
if i == 3 {
break
}
print(i)
}
print("Unreachable...")