library/src/add.cpp

6 lines
61 B
C++
Raw Normal View History

2019-10-15 13:57:41 +02:00
#include "add.h"
int add(int a, int b){
return a + b;
}