annotate hello.rhope @ 81:dbe95bfec970
Very basic file access is now working; however, there's a bug involving assigning a literal to a named pipe inside a conditional block that needs fixing
author |
Mike Pavone <pavone@retrodev.com> |
date |
Thu, 22 Jul 2010 05:39:08 +0000 |
parents |
76568becd6d6 |
children |
43cc42df26cc |
rev |
line source |
0
|
1 /*
|
|
2 This is the classic "Hello World" program in Rhope
|
|
3 */
|
|
4
|
|
5 //All programs in Rhope must have a Main worker
|
|
6 //This is where execution of a Rhope program begins
|
|
7 Main[]
|
|
8 {
|
|
9 //The Print worker prints a line of text to the terminal
|
|
10 Print["Hello Rhope Programming!"]
|
|
11 } |