Created
November 19, 2012 20:26
-
-
Save gburd/4113660 to your computer and use it in GitHub Desktop.
ANSI-C lambda blocks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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