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