1
AGI Syntax Help / Re: Understanding how goto and else work
« on: May 05, 2022, 01:09:31 AM »
The closing curly brace for ending block A happens BEFORE the end of block B. If you tried to compile this, the compiler would think that the 'endif A' curly brace is 'endif B', and vice versa. Blocks have to be fully nested.
Ok, yep. Makes sense in that context!