mirror of
https://github.com/RevCurtisP/C02.git
synced 2025-02-17 21:30:34 +00:00
22 lines
428 B
Plaintext
22 lines
428 B
Plaintext
|
/*****************************************************
|
||
|
* HELLO - Test/Demo program for C02 Standard Header *
|
||
|
* Prints "HELLO WORLD" and exits *
|
||
|
*****************************************************/
|
||
|
|
||
|
//Specify System Header using -H option
|
||
|
|
||
|
char key; //Key value
|
||
|
|
||
|
const char hello = "HELLO WORLD";
|
||
|
char i;
|
||
|
|
||
|
main:
|
||
|
i = 0;
|
||
|
while (hello[i]) {
|
||
|
putchr(hello[i]);
|
||
|
i++;
|
||
|
}
|
||
|
newlin();
|
||
|
goto exit;
|
||
|
|