Created
June 1, 2015 23:18
-
-
Save emilyst/61be5e3882cca5f75cfd to your computer and use it in GitHub Desktop.
This file contains hidden or 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
⚡ 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