?: This is a simple example which prints "HELLO WORLD" on the screen ?: using the new string support and text engine. ?: Include all include files necessary for text. include: general.inc include: clrscr.inc include: text.inc sub: main init set speed: fast call: clrscr ?: Print HELLO WORLD on the screen ?: There is a new line char between HELLO and WORLD for clarity although ?: If you replace it with a space, the text will wrap automatically! call: print, 'HELLObWORLDba ?: Exit when a key is pressed label: loop if:<>:p3, #$ff end else goto: loop end if end sub