diff hello.rhope @ 111:13dfe8214254

Merge
author Mike Pavone <pavone@retrodev.com>
date Mon, 11 Oct 2010 20:04:48 -0400
parents 43cc42df26cc
children
line wrap: on
line diff
--- a/hello.rhope	Wed Oct 06 23:46:47 2010 +0000
+++ b/hello.rhope	Mon Oct 11 20:04:48 2010 -0400
@@ -4,8 +4,8 @@
 
 //All programs in Rhope must have a Main worker
 //This is where execution of a Rhope program begins
-Main[]
+Main[:out]
 {
 	//The Print worker prints a line of text to the terminal
-	Print["Hello Rhope Programming!"]
-}
\ No newline at end of file
+	out <- Print["Hello Rhope Programming!"]
+}