Laurence Lundblade | 74f6841 | 2018-09-13 12:18:49 -0700 | [diff] [blame^] | 1 | // |
2 | // main.c | ||||
3 | // QCBOR | ||||
4 | // | ||||
5 | // Created by Laurence Lundblade on 9/13/18. | ||||
6 | // Copyright © 2018 Laurence Lundblade. All rights reserved. | ||||
7 | // | ||||
8 | |||||
9 | #include <stdio.h> | ||||
10 | |||||
11 | #include "basic_test.h" | ||||
12 | |||||
13 | int main(int argc, const char * argv[]) { | ||||
14 | // insert code here... | ||||
15 | printf("Hello, World! %d\n", basic_test_one()); | ||||
16 | |||||
17 | |||||
18 | return 0; | ||||
19 | } |