home *** CD-ROM | disk | FTP | other *** search
- /* (c) 1990 S.Hawtin.
- Permission is granted to copy this file provided
- 1) It is not used for commercial gain
- 2) This notice is included in all copies
- 3) Altered copies are marked as such
-
- No liability is accepted for the contents of the file.
-
- */
-
- /* Example small hello world */
-
- typedef char *APTR;
-
- extern APTR _stdout;
-
- _main()
- {/* Just use the Amiga function to say hello to the world */
- Write(_stdout,"Hello world\a\n",13L);
- }
-