Skip to content

Instantly share code, notes, and snippets.

Created June 29, 2016 00:52
Show Gist options
  • Select an option

  • Save anonymous/2fba61e84108fda4b281094f4673b1b2 to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/2fba61e84108fda4b281094f4673b1b2 to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/jocuveguqo
<!DOCTYPE html>
<html>
<head>
<script src="http://toolness.github.io/tiny-turtle/tiny-turtle.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Tiny Turtle</title>
<style id="jsbin-css">
canvas{
width: 400px;
height: 400px;
border: 1px solid;
}
</style>
</head>
<body>
<canvas></canvas>
<script id="jsbin-javascript">
TinyTurtle.apply(window);
stamp();
//forward(30);
//right(90);
</script>
<script id="jsbin-source-css" type="text/css">canvas{
width: 400px;
height: 400px;
border: 1px solid;
}</script>
<script id="jsbin-source-javascript" type="text/javascript">TinyTurtle.apply(window);
stamp();
//forward(30);
//right(90);
</script></body>
</html>
canvas{
width: 400px;
height: 400px;
border: 1px solid;
}
TinyTurtle.apply(window);
stamp();
//forward(30);
//right(90);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment