Hello World!

Hello World

Not the most interesting of examples, but somehow compulsory.

Load, press ctrl-b to compile and ctrl+r to run!


program tutorial1;
var  
  	index: byte; 
  	text : string = ("HELLO ","WORLD");

begin
	// Super interesting!
	moveto(5,12,$04);
	printstring(text,0,40);
	Loop(); // Infinite loop
end.