5 lines
90 B
Java
5 lines
90 B
Java
interface Print
|
|
{
|
|
void print (String text);
|
|
void println (String text);
|
|
}
|