sys-prog-coursework-lab-2/calculator.cpp

7 lines
82 B
C++

#include "calculator.h"
int Calculator::Add (int a, int b)
{
return a + b;
}