mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
7 lines
97 B
C
7 lines
97 B
C
int add_int(int a, int b) {
|
|
return a + b;
|
|
}
|
|
|
|
int mul_int(int a, int b) {
|
|
return a * b;
|
|
}
|