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