home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 2
/
goldfish_vol2_cd1.bin
/
files
/
dev
/
obero
/
oberon-a
/
source
/
fpe
/
helloworld.mod
< prev
next >
Wrap
Text File
|
1994-06-17
|
854b
|
37 lines
(***************************************************************************
$RCSfile: HelloWorld.mod $
Description: An absolutely minimal "hello world" program.
Created by: fjc (Frank Copeland)
$Revision: 1.2 $
$Author: fjc $
$Date: 1994/06/17 17:33:11 $
Log entries are at the end of the file.
***************************************************************************)
MODULE HelloWorld;
(*$P-*)
IMPORT Dos;
BEGIN
IF Dos.base.PutStr ("Hello world, from Oberon-A\n") = 0 THEN END;
END HelloWorld.
(***************************************************************************
$Log: HelloWorld.mod $
# 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
#
***************************************************************************)