diff options
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 14 |
1 files changed, 1 insertions, 13 deletions
@@ -6,19 +6,7 @@ int main(void) { Puzzle *puzzle = ReadPuzzleFromFile("puzzles/test.pz"); - - // printf("Puzzle name: %s\n", puzzle->Name); - // printf("Puzzle description: %s\n", puzzle->Description); - // printf("Puzzle code: %s\n", puzzle->InitialCode); - // printf("Puzzle TestC: %zu\n", puzzle->TestC); - - // for (int i = 0; i < puzzle->TestC; i++) { - // Test t = puzzle->Tests[i]; - // printf("\n"); - // printf("\tTest rec: %s\n", t.RecieverName); - // printf("\tTest sig: %s\n", t.MainMethodSignature); - // printf("\tTest argc: %zu\n", t.argc); - // } + PrintPuzzle(puzzle); if (!ReadConfig(DEFAULT_CONFIG_LOCATION)) { return 1; |
