home *** CD-ROM | disk | FTP | other *** search
/ MACD 4 / MACD4.iso / Emulatory / AROS / Demos / helloworld.c < prev    next >
Encoding:
C/C++ Source or Header  |  1978-03-06  |  489 b   |  21 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: helloworld.c,v 1.3 1996/09/17 16:43:00 digulla Exp $
  4.     $Log: helloworld.c,v $
  5.     Revision 1.3  1996/09/17 16:43:00  digulla
  6.     Use general startup code
  7.  
  8.     Revision 1.2  1996/08/01 17:40:44  digulla
  9.     Added standard header for all files
  10.  
  11.     Desc: most simple demo for AROS
  12.     Lang: english
  13. */
  14. #include <clib/dos_protos.h>
  15.  
  16. int main (int argc, char ** argv)
  17. {
  18.     Write (Output (), "hello, world\n", 13);
  19.     return 0;
  20. }
  21.