Skip to content

Instantly share code, notes, and snippets.

@georgebashi
Created April 26, 2010 14:07
Show Gist options
  • Save georgebashi/379376 to your computer and use it in GitHub Desktop.
Save georgebashi/379376 to your computer and use it in GitHub Desktop.
import pturtle.*;
Turtle t = new Turtle(this);
for (int i = 0; i < 4; i++) {
t.forward(10);
t.right(90);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment