Skip to content

Instantly share code, notes, and snippets.

@bklimt
Created February 3, 2013 08:11
Show Gist options
  • Save bklimt/4700928 to your computer and use it in GitHub Desktop.
Save bklimt/4700928 to your computer and use it in GitHub Desktop.
Objective-C Blocks Example D
typedef void (^dBlock)();
dBlock exampleD_getBlock() {
char d = 'D';
return ^{
printf("%c\n", d);
};
}
void exampleD() {
exampleD_getBlock()();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment