diff hello.rhope @ 0:76568becd6d6

Rhope Alpha 2a source import
author Mike Pavone <pavone@retrodev.com>
date Tue, 28 Apr 2009 23:06:07 +0000
parents
children 43cc42df26cc
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/hello.rhope	Tue Apr 28 23:06:07 2009 +0000
@@ -0,0 +1,11 @@
+/*
+	This is the classic "Hello World" program in Rhope
+*/
+
+//All programs in Rhope must have a Main worker
+//This is where execution of a Rhope program begins
+Main[]
+{
+	//The Print worker prints a line of text to the terminal
+	Print["Hello Rhope Programming!"]
+}
\ No newline at end of file