Files
tinygo/testdata/cgo/main.c
T
2018-12-10 15:38:03 +01:00

8 lines
73 B
C

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