mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 02:29:52 +00:00
10 lines
123 B
C
10 lines
123 B
C
|
|
#include <conio.h>
|
|
|
|
void main(void)
|
|
{
|
|
clrscr();
|
|
// cprintf("hello world");
|
|
cputs("hello world");
|
|
for(;;);
|
|
} |