view hello.rhope @ 162:bac2c74801f0

Move some C code out of cbackend_c.rhope into separate include files
author Mike Pavone <pavone@retrodev.com>
date Sun, 09 Jan 2011 22:51:10 -0500
parents 43cc42df26cc
children
line wrap: on
line source

/*
	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[:out]
{
	//The Print worker prints a line of text to the terminal
	out <- Print["Hello Rhope Programming!"]
}