fork download
  1. import java.util.*;
  2. import java.lang.*;
  3.  
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. new Main() {
  9. void hello() {
  10. System.out.println("hello()");
  11. }
  12. }.hello(); //here you can call the method ...
  13. }
  14. }
Success #stdin #stdout 0.05s 215552KB
stdin
Standard input is empty
stdout
hello()