view hello.rhope @ 124:8aedae4f4ddd

Add support for Int32 as Dictionary key
author Mike Pavone <pavone@retrodev.com>
date Thu, 28 Oct 2010 21:05:50 -0400
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!"]
}