Skip to content

Instantly share code, notes, and snippets.

@gdetor
Created February 7, 2023 00:28
Show Gist options
  • Save gdetor/751bac4813755036fe87e3abaab5733d to your computer and use it in GitHub Desktop.
Save gdetor/751bac4813755036fe87e3abaab5733d to your computer and use it in GitHub Desktop.
C might be a scripting language
#!/usr/bin/bash
tail -n+3 "$0" | gcc -xc - && ./a.out ; exit
#include <stdio.h>
int main()
{
printf("C is a scripting language!\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment