home *** CD-ROM | disk | FTP | other *** search
/ Dream 41 / Amiga_Dream_41.iso / Amiga / Programmation / c / PDC.lha / PDC / bin.lzh / sample / hello.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-04-06  |  82 b   |  8 lines

  1. #include <stdio.h>
  2.  
  3. char *string = "hello\n";
  4.  
  5. main () {
  6.     printf("%s", string);
  7. }
  8.