mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-19 12:32:08 +00:00
13 lines
321 B
Plaintext
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;
|
|
|