Python
import turtle as t t.color('green') for i in range(100): t.forward(i*2) t.left(90) t.done()