/*
  Program: hello2.c

  Embellishments to hello.c.
*/

#include <stdio.h>
#include "genlib.h"

main()
{
   printf("Mork says (in a loud voice): ") ;
   printf("Hello world.\n\n") ;

   printf("World says (whispers back): ") ;
   printf("@$#%%\"\\!=@&*\n") ;
}

