Skip to content

Instantly share code, notes, and snippets.

@gburd
Created November 19, 2012 20:26
Show Gist options
  • Save gburd/4113660 to your computer and use it in GitHub Desktop.
Save gburd/4113660 to your computer and use it in GitHub Desktop.
ANSI-C lambda blocks
/*
sudo apt-get install libblocksruntime-dev
clang -fblocks clang-blocks.c -lBlocksRuntime -o clang-blocks
CAVEAT: only works with clang and BlocksRuntime
*/
#include <stdio.h>
int main(void)
{
void (^f)() = ^{
for (int i = 0; i < 100; i++)
printf("%d\n", i);
};
f();
return 0;
}
/*
gcc -std=gnu99 gcc-blocks.c -o gcc-blocks
CAVEAT: only works with gcc
*/
#include <stdio.h>
int main(void)
{
void (*f)(void) =
({
void __fn__ (void) {
for (int i = 0; i < 100; i++)
printf("%d\n", i);
}
__fn__;
});
f();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment