fork download
  1. class Example {
  2. public static void main(String[] args) {
  3. new Example().foobar();
  4. }
  5.  
  6. void foobar(Example this) {
  7. System.out.println(this);
  8. }
  9. }
Success #stdin #stdout 0.04s 2184192KB
stdin
Standard input is empty
stdout
Example@1540e19d