diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2021-05-26 11:33:41 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2021-05-26 11:48:47 -0400 |
commit | 98c08a2b90d751282d36970cf73b5359092d28eb (patch) | |
tree | 48d2a284421e23e8a380357271b48cf6f5212955 /test.c | |
parent | 49619d7ecf17ca38a2f05bce50a402a02e4aebd1 (diff) |
Added test.c
Diffstat (limited to 'test.c')
-rw-r--r-- | test.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -0,0 +1,10 @@ +#include <tcclib.h> + +extern int add(int a, int b); + +int start() { + int a = 3; + int b = 4; + printf("add(%i, %i): %i\n", a, b, add(a, b)); + return 0; +} |