7 lines
60 B
C++
Raw Normal View History

2020-10-15 20:05:27 +02:00
#include "add.h"
int add(int a, int b)
{
return a + b;
}