Advertisement
Guest User

Untitled

a guest
Dec 17th, 2018
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. class gayhouse {
  2. public static void main(String[] args) {
  3.  
  4. Gomik gomik = new Gomik(true);
  5.  
  6. System.out.println("этот гомик " + ((gomik.active)? "" : "не ") + "подставляет жопу" );
  7.  
  8. }
  9. }
  10.  
  11. class Pidor{
  12. boolean active = false;
  13.  
  14. }
  15.  
  16. class Gomik extends Pidor{
  17. Gomik(boolean b) {
  18. active = b;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement