# -*- coding: utf-8 -*-
"""
Created on Mon Sep 12 15:35:41 2022

@author: vince
"""
from turtle import *
shape("turtle")
screensize(1000,1000) # ne fonctionne pas dans Trinket
reset()
bgcolor("black")
color("white")
clear()
forward(200)
right(90)
forward(200)
right(90)
forward(200)
right(90)
forward(200)
right(90)

done()
