4 lines
100 B
Java
4 lines
100 B
Java
void printAll(String... strings){
|
|
for ( String s : strings )
|
|
System.out.println( s );
|
|
}
|