Skip to content

Instantly share code, notes, and snippets.

@headius
Created January 31, 2018 08:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save headius/6826644747ad0e9bcbc9ed9f0fa60c0f to your computer and use it in GitHub Desktop.
Save headius/6826644747ad0e9bcbc9ed9f0fa60c0f to your computer and use it in GitHub Desktop.
[] ~/projects/jruby $ cat > wacky.c
#include <stdio.h>
int main() {
printf("this " "is " "a " "C " "thing" "\n");
return 0;
}
^D
[] ~/projects/jruby $ gcc wacky.c ; ./a.out
this is a C thing
[] ~/projects/jruby $
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment