Created
June 6, 2015 00:10
-
-
Save libsteve/d62f88c475939906fff0 to your computer and use it in GitHub Desktop.
A German if-then-else-end expression in C
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 <stdbool.h> | |
#define wenn ( | |
#define dann ) ? ( | |
#define sonst ) : ( | |
#define ende ) | |
int main() { | |
int x = wenn true dann 10 sonst 11 ende; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment