sunchb_cson/demo/main.c

13 lines
138 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"
int main()
2019-12-25 15:13:45 +08:00
{
test1();
2020-05-06 17:42:33 +08:00
//test2();
return 0;
2019-12-25 15:13:45 +08:00
}