lj-clitools/generators/README.md

17 lines
152 B
Markdown
Raw Permalink Normal View History

2020-11-11 21:14:38 +00:00
# Generators
## Turtle
```
# turtle-example.py
from turtle import *
pencolor((255,0,0))
for i in range(4):
forward(100)
right(90)
done()
#EOF
```