fork download
  1. interface ITmp {
  2. public static void p() {
  3. System.out.println("hello");
  4. }
  5. }
  6.  
  7. class Tmp implements ITmp {
  8. public static void main(String[] args) {
  9. ITmp.p();
  10. }
  11. }
  12.  
Success #stdin #stdout 0.08s 47080KB
stdin
Standard input is empty
stdout
hello