Quote:
Originally Posted by ownedbycats
Is there any type of "goto" option in a template? e.g. if a book matches a certain check, then skip the rest of the if-tree and then go to the next one?
|
What is an "if-tree"? If it is nested ifs then why doesn't a nested if do the job?
The language doesn't support goto. It does support continue, break, and return.