10 lines
109 B
C
10 lines
109 B
C
|
#pragma once
|
||
|
|
||
|
class example
|
||
|
{
|
||
|
public:
|
||
|
static int add( int x, int y )
|
||
|
{
|
||
|
return x + y;
|
||
|
}
|
||
|
};
|