exercism/cpp/example/example.h

10 lines
109 B
C
Raw Normal View History

2016-08-23 17:33:06 +00:00
#pragma once
class example
{
public:
static int add( int x, int y )
{
return x + y;
}
};