Index

Related


String[] words = {"Hello", "World"}
 
for (w : words){
	system.out.print(w)
}

Output:

Hello
World