fork(2) download
  1. class Program
  2. {
  3. public static void main(String[] args) {
  4. Program program = new Program();
  5. String[] greeting = program.getGreeting();
  6. for (String word: greeting) {
  7. System.out.println(word);
  8. }
  9. }
  10.  
  11. public String[] getGreeting() {
  12. return new String[] { "hello", "world" };
  13. }
  14. }
Success #stdin #stdout 0.04s 213440KB
stdin
Standard input is empty
stdout
hello
world