diff hello.rhope @ 105:43cc42df26cc

Various compiler improvements
author Mike Pavone <pavone@retrodev.com>
date Tue, 24 Aug 2010 23:22:17 -0400
parents 76568becd6d6
children
line wrap: on
line diff
--- a/hello.rhope	Wed Aug 11 03:13:28 2010 -0400
+++ b/hello.rhope	Tue Aug 24 23:22:17 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!"]
+}