summaryrefslogtreecommitdiff
path: root/test.c
blob: 0ad36db9082a4db9dedc7b93e31b94992c64c9fd (plain)
1
2
3
4
5
6
7
8
9
#include <tcclib.h>
#include "test2.h"

int start() {
	int a = 3;
	int b = 4;
	printf("add(%i, %i): %i\n", a, b, add(a, b));
	return 0;
}