sunchb_cson/demo/main.c

13 lines
135 B
C
Raw Normal View History

2019-12-25 15:13:45 +08:00
extern void test1();
extern void test2();
2019-12-25 15:13:45 +08:00
#include "cson.h"
#include "stdio.h"
void main()
{
test1();
test2();
2019-12-25 15:13:45 +08:00
return;
}