a2sudoku/a2sudoku/main.c
2015-07-15 08:23:05 -05:00

21 lines
251 B
C

/*
* main.c
* a2sudoku
*
* Created by Jeremy Rand on 2015-07-15.
* Copyright (c) 2015 Jeremy Rand. All rights reserved.
*
*/
#include <stdio.h>
#include <conio.h>
int main(void)
{
printf("HELLO, WORLD!\n");
cgetc();
return 0;
}