-
-
Save crclark96/f274e0fb7f426f3212d15aa5762dd8aa to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
tail -n+3 "$0" | gcc -xc - && ./a.out && rm ./a.out ; exit | |
//[2K[2D[A[2K[A[2K | |
#include <stdio.h> | |
int main() { | |
printf("C is a scripting language!\n"); | |
} |
This file contains 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
/tmp | |
➜ /bin/cat a.c | |
#include <stdio.h> | |
int main() { | |
printf("C is a scripting language!\n"); | |
} | |
/tmp | |
➜ ./a.c | |
C is a scripting language! | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment