Created
October 12, 2012 12:35
-
-
Save jelmervdl/3879006 to your computer and use it in GitHub Desktop.
Never ever do this.
This file contains hidden or 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 <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