Files
test_repo/add.c
2020-06-04 17:50:50 +08:00

4 lines
43 B
C

int add(int a, int b)
{
return a + b;
}