RosettaCodeData/Task/Variadic-function/Java/variadic-function-4.java

4 lines
197 B
Java
Raw Normal View History

2023-07-01 11:58:00 -04:00
Object[] args = {"Rosetta", "Code", "Is", "Awesome,"};
printAll(args, "Dude!");//does not print "Rosetta Code Is Awesome, Dude!"
//instead prints the type and hashcode for args followed by "Dude!"