Advertisement
simuloid

glados

Sep 9th, 2016
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.43 KB | None | 0 0
  1. assert(this instanceOf Triumph)
  2.  
  3. new Note("huge success");
  4.  
  5. if (Math.random() > 0.99) {
  6.   overState(my.satisfaction);
  7. }
  8.  
  9. // Aperture science
  10. if (weCan) {
  11.   whatWeMust();
  12. }
  13.  
  14. for (Person p: us) {
  15.   if (!dead(p)) {
  16.     good.add(p);
  17.   }
  18. }
  19.  
  20. do {
  21.   try {
  22.     science();
  23.     for (Person p: good) {
  24.       p.gun = new NeatGun();
  25.     }
  26.   }
  27.   catch (Exception mistake) {
  28.     assert(!sense(crying));
  29.   }
  30. } while (cake--);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement