1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-21 11:29:41 +00:00
cc65/samples/helloworld.c

10 lines
122 B
C
Raw Normal View History

2021-05-09 22:13:24 +00:00
// Traditional "Hello World" program
#include <stdio.h>
void main (void)
{
printf( "Hello World!\n" );
return;
}