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

Author: Chun Tung Chou, UNSW 

This function illustrates the functions

draw.start()
draw.move(distance)
draw.turn(angle)
"""

import draw 

draw.start()    # starting position (0,0) pointing at +x axis
draw.move(2)    # move by a distance of 2 
draw.turn(60)   # turn by an angle of 60 degress 
draw.move(4)    # move by a distance of 4 