Created
January 16, 2012 12:40
-
-
Save chorr/1620688 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Listing 3.3</title> | |
| </head> | |
| <body> | |
| <ul id="results"></ul> | |
| <script type="text/javascript"> | |
| function stealthCheck(){ | |
| assert(stealth(), | |
| "We'll never get below the return, but that's OK!"); | |
| return true; | |
| function stealth(){ return true; } | |
| } | |
| stealthCheck(); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment