Last active
February 1, 2018 21:44
-
-
Save reinefjord/99af5f408174a209e0af4b74a56e5260 to your computer and use it in GitHub Desktop.
får-loop
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
#include <stdio.h> | |
#define får for | |
#define bää printf | |
int main(void) | |
{ | |
får (int i = 0; i < 10; i++) | |
{ | |
bää("%d får\n", i); | |
} | |
return 0; | |
} | |
// $ clang får.c -o får | |
// $ ./får | |
// 0 får | |
// 1 får | |
// 2 får | |
// 3 får | |
// 4 får | |
// 5 får | |
// 6 får | |
// 7 får | |
// 8 får | |
// 9 får |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment