colourgo/colourgo/main.c

19 lines
217 B
C
Raw Normal View History

//
// main.c
// colourgo
//
// Created by Jeremy Rand on 2017-07-19.
// Copyright © 2017 Jeremy Rand. All rights reserved.
//
#include <stdio.h>
#include "game.h"
int main(void)
{
game();
return 0;
}