summaryrefslogtreecommitdiff
path: root/test/main.c
blob: 376370637cac7074635e83cffc5821b16e1ed6da (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

#include "hai.h"

int main(int argc, char **argv) {
	printf("Hello world\n");
	hai();
	return 0;
}