Created
October 22, 2018 04:46
-
-
Save awave1/f0e46733fbbd200fbebe09f5a24cf415 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
outer: | |
// test, if test failed, outer is done => b done | |
// otherwise do inner | |
inner: | |
// test, if test failed, inner is done => b outer_done | |
// increment inner counter | |
// do stuff | |
b inner | |
outer_done: | |
// increment loop counter for outer loop | |
// reset counter for inner | |
b outer | |
done: | |
// loop done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment