#include <stdio.h>
#include <stdlib.h>

int
main ()
{
  /*In C, comments are typically enclosed in these */
  printf ("Kansas Jayhawks.  Absolutely the best \n");
 
  /*The \n is a "force a new line" character.*/
 
 //In Objective C, it is more typical to use the double slash to comment-out words
  //Either way, these are comments, not part of the program 

  system ("uname -a");
  return 0; 
  
}

