fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4.  
  5. public class Main
  6. {
  7. public static void main (String[] args) throws java.lang.Exception
  8. {
  9. Other.hello();
  10. }
  11. }
  12.  
  13. class Other {
  14. public static void hello() {
  15. System.out.println("Hello world!");
  16. }
  17. }
  18.  
Success #stdin #stdout 0.1s 320576KB
stdin
Standard input is empty
stdout
Hello world!