home *** CD-ROM | disk | FTP | other *** search
- (***************************************************************************
-
- $RCSfile: HelloWorld.mod $
- Description: An absolutely minimal "hello world" program.
-
- Created by: fjc (Frank Copeland)
- $Revision: 1.3 $
- $Author: fjc $
- $Date: 1994/09/25 18:20:54 $
-
- Log entries are at the end of the file.
-
- ***************************************************************************)
-
- MODULE HelloWorld;
-
- (*<*STANDARD-*>*)
-
- IMPORT Dos;
-
- BEGIN
- IF Dos.base.PutStr ("Hello world, from Oberon-A\n") = 0 THEN END;
- END HelloWorld.
-
- (***************************************************************************
-
- $Log: HelloWorld.mod $
- # Revision 1.3 1994/09/25 18:20:54 fjc
- # - Uses new syntax for external code declarations
- #
- # Revision 1.2 1994/06/17 17:33:11 fjc
- # - Updated for release
- #
- # Revision 1.1 1994/06/09 13:39:44 fjc
- # Initial revision
- #
-
- ***************************************************************************)
-