summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index d7b2613..ea622ec 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,8 +1,9 @@
#include <stdio.h>
#include <stdlib.h>
+#include "common.h"
int main(int argc, char **argv)
{
- printf("oxen\n");
+ printf("55:%d, 42:%d, 11:%d, 100:%d, 85:%d\n", cardpoints(55), cardpoints(42), cardpoints(11), cardpoints(100), cardpoints(85));
return EXIT_SUCCESS;
}