// !> The basic framework to a C program. This program prints out a message.

// To compile, use either
// gcc hello.c -o hello
// or, if the LLVM compiler has been installed
// clang hello.c -o hello
#include <stdio.h>

// main() is a special function, that is
// the entry point into our program.

int main(){
  
  // Prints out to standard output 
  // a  message!
  puts("Hello Computer Systems \n");
   
  // Return from our function.
  return 0;
}
