// clang hello.c -o hello #include // main() is a special function, that is // the entry point into our program. int main(){ // Prints out to standard output // a nice greeting message! // puts("Hello Computer Systems \n"); printf("Hello Computer Systems \n"); // Return from our function. return 0; }