Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class A
  2. {
  3. void one()
  4. {
  5. System.out.println("hello");
  6. }
  7. }
  8.  
  9. class One
  10. {
  11. public static void main(String args[])
  12. {
  13. new A()
  14. {
  15. void five()
  16. {
  17. one();
  18. }
  19. }.five();
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement