fork download
  1. class Ideone
  2. {
  3. public static void main (String[] args)
  4. {
  5. Hello.hello(); // OK
  6. }
  7. }
  8.  
  9. class Hello
  10. {
  11. public static void hello()
  12. {
  13. System.out.println("Hello World!");
  14. }
  15. }
Success #stdin #stdout 0.06s 32456KB
stdin
Standard input is empty
stdout
Hello World!