fork download
  1. class Ideone {
  2. static void main(String[] args) {
  3. Hello.hello() // OK
  4. }
  5. }
  6.  
  7. class Hello {
  8. static void hello() {
  9. println "Hello World!"
  10. }
  11. }
Success #stdin #stdout 1.6s 118144KB
stdin
Standard input is empty
stdout
Hello World!