Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public class BigNoobObject
  2. {
  3. int i = 7;
  4. String insult = "NOOB";
  5.  
  6. void methodOne()
  7. {
  8. System.out.println("You " + i);
  9. }
  10.  
  11. void methodTwo()
  12. {
  13. System.out.println("Fucker " + insult);
  14. }
  15.  
  16. public static void main(String[] args)
  17. {
  18. BigNoobObject daniel = new BigNoobObject();
  19. daniel.methodOne();
  20. daniel.methodTwo();
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement