Skip to content

Instantly share code, notes, and snippets.

@LiewJunTung
Last active January 28, 2018 03:01
Show Gist options
  • Save LiewJunTung/66e65c7bf44e12369aef30bb03d6fc58 to your computer and use it in GitHub Desktop.
Save LiewJunTung/66e65c7bf44e12369aef30bb03d6fc58 to your computer and use it in GitHub Desktop.
#include "calculator_impl.hpp"
#include <iostream>
using namespace std;
using namespace calculator;
int main(int argc, char const *argv[])
{
CalculatorImpl calculator = CalculatorImpl();
int sum = calculator.summation(1, 2);
cout << sum << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment