C02/test/hello.c02

13 lines
321 B
Plaintext

/*****************************************************
* HELLO - Test/Demo program for C02 Standard Header *
* Prints "HELLO WORLD" and exits *
*****************************************************/
//Specify System Header using -H option
main:
putstr("HELLO WORLD");
newlin();
goto exit;