2024-07-22 19:39:19 +02:00

6 lines
101 B
C

// @BAKE tcc -shared -o add.so $@
//#include <tcc4tcl.h>
int add(int a, int b) {
return a + b;
}