1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-01 05:41:34 +00:00
C02/test/hello.c02

13 lines
321 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
main:
putstr("HELLO WORLD");
2019-11-19 18:52:21 +00:00
newlin();
goto exit;