Created
June 23, 2021 14:48
-
-
Save eraserhd/43f7e4024febcdc5e8b9310a78ac8da9 to your computer and use it in GitHub Desktop.
Executable C file
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
//usr/bin/env cc -o "/tmp/foo.$$" "$0" || exit $?; exec "/tmp/foo.$$" "$@" | |
#include <stdio.h> | |
int main(int argc, char *argv[]) | |
{ | |
printf("hello, world!\n"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment