Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. function stealthCheck(){
  2. assert( stealth(), "We'll never get below the return, but that's OK!" );
  3.  
  4. return stealth();
  5.  
  6. function stealth(){ return true; }
  7. }
  8.  
  9. stealthCheck(); // true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement