blob: 4d8c9d9505a1bbbb3f4bc28cee5dd7293e13bd56 [file]
## examples/for_break.av
for i in range(0, 10) {
if i > 5 {
break;
}
println(i);
}