apple2048/apple2048.c

13 lines
157 B
C
Raw Normal View History

2014-07-23 13:20:45 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int main(void)
{
printf("DOES THIS WORK...\n");
while (!kbhit()) {
}
return 0;
}