Created
June 29, 2016 00:52
-
-
Save anonymous/2fba61e84108fda4b281094f4673b1b2 to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/jocuveguqo
This file contains hidden or 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
| <!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> |
This file contains hidden or 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
| canvas{ | |
| width: 400px; | |
| height: 400px; | |
| border: 1px solid; | |
| } |
This file contains hidden or 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
| 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