view hello.rhope @ 35:3498713c3dc9

C backend portion of supporting user defined types is done, but untested. Parser/NWorker still need a fair bit of work
author Mike Pavone <pavone@retrodev.com>
date Wed, 30 Sep 2009 23:55:04 -0400
parents 76568becd6d6
children 43cc42df26cc
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[]
{
	//The Print worker prints a line of text to the terminal
	Print["Hello Rhope Programming!"]
}