Created
May 9, 2013 17:33
-
-
Save manuel/5549094 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
<html> | |
<head> | |
<title>Wat Sleeping Demo</title> | |
<script type="text/javascript" src="../../wat.js"></script> | |
</head> | |
<body> | |
<h1><a href="https://github.com/manuel/wat-js">Wat</a></h1> | |
<script type="text/javascript"> | |
var code = | |
["begin", | |
["define", "default-prompt", ["quote", "default-prompt"]], | |
["define", ["spawn-thread", "id"], | |
["push-prompt", "default-prompt", | |
["run-thread", "id"]]], | |
["define", ["run-thread", "id"], | |
["loop", | |
[".", document, "write", ["+", ["string", "Active thread: "], "id"]], | |
["sleep", 250]]], | |
["define", ["sleep", "ms"], | |
["take-subcont", "default-prompt", "k", | |
["define", ["callback"], | |
["push-prompt", "default-prompt", | |
["push-subcont", "k"]]], | |
[setTimeout, ["wat-js-callback", "callback"], "ms"]]], | |
["spawn-thread", 1], | |
["spawn-thread", 2], | |
["spawn-thread", 3], | |
["spawn-thread", 4], | |
["spawn-thread", 5] | |
]; | |
new wat.VM().run(code); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment