home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD2.bin
/
bbs
/
dev
/
oberon-a-1.4ß.lha
/
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
#
***************************************************************************)