1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-09-28 20:56:53 +00:00
C02/test/hello.c02

22 lines
428 B
Plaintext
Raw Normal View History

2019-11-19 18:52:21 +00:00
/*****************************************************
* 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;