Skip to content

Instantly share code, notes, and snippets.

@stevebrun
Created June 6, 2015 00:10
Show Gist options
  • Save stevebrun/d62f88c475939906fff0 to your computer and use it in GitHub Desktop.
Save stevebrun/d62f88c475939906fff0 to your computer and use it in GitHub Desktop.
A German if-then-else-end expression in C
#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