File: sample.py

package info (click to toggle)
rust-chumsky 0.9.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 464 kB
  • sloc: python: 13; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 201 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import turtle

board = turtle.Turtle(
    foo,
    bar,
    baz,
)

for i in range(6):
    board.forward(50)
    if i % 2 == 0:
        board.right(144)
    else:
        board.left(72)

turtle.done()