WIP: Started on break & continue, needs Toy_Array in Toy_Value first

This commit is contained in:
2024-11-28 13:43:26 +11:00
parent 6cc331d462
commit 431893bf60
6 changed files with 99 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
while (a) { //stored in an array
while (b) { //stored in an array
while(c) { //stored in an array
//just peek at the array's top
continue;
//these are stored in a second array
break;
break;
break;
} //breaks are updated here
//but what about these?
break;
break;
break;
}
}