summaryrefslogtreecommitdiff
path: root/main.cpp
blob: 2079353e04cd9225c4898fb9a935d44d0b44c062 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>
#include "counter.h"

using std::cout, std::endl;

int main() {
  Counter c(0);

  c.increment();
  cout << c.get_value() << endl;

  return 0;
}