Skip to content

Instantly share code, notes, and snippets.

@Bijesse
Forked from anonymous/index.html
Created June 29, 2016 00:53
Show Gist options
  • Select an option

  • Save Bijesse/b37c7a2c655205ebd5435b0b09c44fc4 to your computer and use it in GitHub Desktop.

Select an option

Save Bijesse/b37c7a2c655205ebd5435b0b09c44fc4 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