Created
December 10, 2013 22:39
-
-
Save TobiasWooldridge/7901694 to your computer and use it in GitHub Desktop.
This file contains 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
<!-- | |
Use the following or similar to execute JS | |
--> | |
<html> | |
<body> | |
<pre> | |
<script> | |
function log(arg) { | |
document.writeln(arg); | |
} | |
function identity(x) { | |
return x; | |
} | |
log(identity(3)); | |
</script> | |
</pre> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment