diff hello.rhope @ 110:336da6ce8174

Merge
author Mike Pavone <pavone@retrodev.com>
date Wed, 06 Oct 2010 23:48:32 +0000
parents 43cc42df26cc
children
line wrap: on
line diff
--- a/hello.rhope	Wed Oct 06 23:47:26 2010 +0000
+++ b/hello.rhope	Wed Oct 06 23:48:32 2010 +0000
@@ -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!"]
+}