JavaTXCompilerInJavaTX/examples/OldExamples/otth/otth8.jav
2013-10-18 13:33:46 +02:00

12 lines
151 B
Java
Executable File

class otth8
{
int add( int x, int y )
{
return x + y;
}
int mul( int x, int y )
{
return x * y;
}
}