Skip to content

Instantly share code, notes, and snippets.

@robrix
Last active August 29, 2015 14:00
Show Gist options
  • Save robrix/11055950 to your computer and use it in GitHub Desktop.
Save robrix/11055950 to your computer and use it in GitHub Desktop.
The sliding goes-to operator in C
#include <stdio.h>
int main(int argc, char *argv[]) {
int i = 10;
while (i \
\
\
\
--> 0) { printf("%i\n", i); }
return EXIT_SUCCESS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment