Skip to content

Instantly share code, notes, and snippets.

@reinefjord
Last active February 1, 2018 21:44
Show Gist options
  • Save reinefjord/99af5f408174a209e0af4b74a56e5260 to your computer and use it in GitHub Desktop.
Save reinefjord/99af5f408174a209e0af4b74a56e5260 to your computer and use it in GitHub Desktop.
får-loop
#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