experiments/c-embedding/adder/adder.c
2024-05-27 21:30:27 +12:00

3 lines
44 B
C

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