1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-01 05:41:31 +00:00
8bitworkshop/presets/apple2/skeleton.cc65

14 lines
183 B
Plaintext
Raw Normal View History

2018-06-19 06:08:18 +00:00
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <conio.h>
int main (void)
{
printf("\nHello! Press a key to reboot...\n");
cgetc();
return EXIT_SUCCESS;
}