Hacker News new | past | comments | ask | show | jobs | submit login

Did you know that python has single-command graphics as well, via "turtle" module? If you have python installed, you can try it interactively:

    python3
    >>> import turtle
    >>> for x in range(36): turtle.forward(10); turtle.right(10)



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: