Merge pull request #215 from GeorgeGibson/master

Add Perseus, Amiga-E, Centura, Clipper
This commit is contained in:
Mike Donaghy
2015-09-14 12:51:43 -04:00
4 changed files with 22 additions and 0 deletions

1
a/Amiga-E.amiga-e Normal file
View File

@@ -0,0 +1 @@
PROC main() IS WriteF('Hello World\n')

10
c/centura.centura Normal file
View File

@@ -0,0 +1,10 @@
! Hello World in Centura
Function: HelloWorld
Description:
Returns
Parameters
Static Variables
Local variables
Actions
Call SalMessageBox( 'Hello World','Message',MB_Ok)

1
c/clipper.clipper Normal file
View File

@@ -0,0 +1 @@
? "Hello World"

10
p/perseus.p++ Normal file
View File

@@ -0,0 +1,10 @@
link CUI entry main
include "Windows.inc"
include "Console.inc"
func main()
{
Console.Init("Console")
Console.Write("Hello World!")
}