Skip to content

Instantly share code, notes, and snippets.

@emilyst
Created June 1, 2015 23:18
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 emilyst/61be5e3882cca5f75cfd to your computer and use it in GitHub Desktop.
Save emilyst/61be5e3882cca5f75cfd to your computer and use it in GitHub Desktop.
⚡ l
total 32
-rwxrwxr-x 1 emilyst staff 8.3K Jun 1 16:17 hello*
-rw-r--r-- 1 emilyst staff 82B Jun 1 16:13 hello.c
⚡ cat hello.c
#include <stdio.h>
int main(void) {
printf("hello world\n");
return 0;
}
⚡ make hello
cc hello.c -o hello
⚡ ./hello
hello world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment