Skip to content

Instantly share code, notes, and snippets.

@bklimt
Last active December 12, 2015 02:38
Show Gist options
  • Save bklimt/4700288 to your computer and use it in GitHub Desktop.
Save bklimt/4700288 to your computer and use it in GitHub Desktop.
Objective-C Blocks Example A
void exampleA() {
char a = 'A';
^{
printf("%c\n", a);
}();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment