Commit 5fff6ce3 by BellCodeEditor

auto save

parent a1bf8a59
Showing with 15 additions and 10 deletions
import turtle #include<iostream>
pen=turtle.Pen(); using namespace std;
pen.speed(0) int main();
a=1; {
for i in range(300): import turtle
pen.forward(a); pen=turtle.Pen();
pen.right(91); pen.speed(0);
a+=1; for i in range(300):
turtle.done() pen.forward(i);
\ No newline at end of file pen.right(91);
a+=1;
turtle.done();
return 0;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment