view hello.rhope @ 189:d0e3a13c1bd9 default tip

Remove old calculator example
author Mike Pavone <pavone@retrodev.com>
date Fri, 07 Oct 2011 00:24:04 -0700
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!"]
}