#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
UNSW Indigenous pre-program 2024

Author: Chun Tung Chou, UNSW 

This function illustrates the for-loops 
"""

import draw

draw.start()
for i in range(4):  # Repeat four times 
    draw.move(2)
    draw.turn(90)
    
    
        