fork download
  1. class Teste30 {
  2. public static void main(String[] args) {
  3. for (String nome : "Isso funciona mesmo, ok?".split(" ")) System.out.println(nome);
  4. }
  5. }
  6.  
  7. //https://pt.stackoverflow.com/q/172144/101
Success #stdin #stdout 0.06s 32472KB
stdin
Standard input is empty
stdout
Isso
funciona
mesmo,
ok?