Skip to content

Instantly share code, notes, and snippets.

@jelmervdl
Created October 12, 2012 12:35
Show Gist options
  • Save jelmervdl/3879006 to your computer and use it in GitHub Desktop.
Save jelmervdl/3879006 to your computer and use it in GitHub Desktop.
Never ever do this.
#include <iostream>
#define voor for
#define ieder (
#define getal int
#define van =
#define tot ; i <=
#define doe ; ++i)
#define print std::cout <<
#define een 1
#define twee 2
#define twintig 20
int main()
{
voor ieder getal i van een tot twintig + twee doe {
print i;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment