home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / borland / jnfb88.arc / PALPRO.ARC / GREET.C < prev    next >
Text File  |  1987-10-02  |  119b  |  12 lines

  1. #include <stdio.h> 
  2.  
  3. hello() 
  4.         printf("Hello, world!\n"); 
  5.  
  6. main() 
  7.         hello(); 
  8.