experiments/c-embedding/adder/adder.c

4 lines
44 B
C
Raw Normal View History

2024-05-27 21:30:27 +12:00
int add(int a, int b) {
return a + b;
}