rhea/assets/examples/loops.rhea

14 lines
134 B
Plaintext

func main(){
var i = 0;
loop {
match i {
10 -> break;
}
i = i + 1;
}
loop {}
}