home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 20 / AACD20.BIN / AACD / Programming / AmIDE / Projects / Example / hello.c next >
Encoding:
C/C++ Source or Header  |  2001-03-04  |  139 b   |  13 lines

  1. /*
  2. ** Little example on how to make a project
  3. ** with AmIDE
  4. **
  5. */
  6.  
  7. #include <stdio.h>
  8.  
  9. void main(void)
  10. {
  11.   printf("Hello AmIDE user\n");
  12. }
  13.