Skip to content

Instantly share code, notes, and snippets.

@TobiasWooldridge
Created December 10, 2013 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TobiasWooldridge/7901694 to your computer and use it in GitHub Desktop.
Save TobiasWooldridge/7901694 to your computer and use it in GitHub Desktop.
<!--
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