so in some sample code from this upcoming Core Audio Book i've encountered an unfamiliar symbol
cleanup:
which is used before some dispose(myStuff) functions are called. It's not preceded by an '@' or a '#'. Seems you can type any word, followed by a colon, and it will act like a comment?
int main (int argc, const char * argv[])
{
@autoreleasepool
{
NSLog(@"i am code.");
cleanup:
foop:
lol:
NSLog(@"even more code.");
}
return 0;
}