exercism/cpp/example/example.h

10 lines
109 B
C++

#pragma once
class example
{
public:
static int add( int x, int y )
{
return x + y;
}
};