#!/usr/bin/env python3 # import sys # import argparse import toyrobot def main(): current_bot = toyrobot.Robot(10, 10) print(current_bot) current_bot.place(6, 6, "NORTH") print(current_bot) current_bot.place(2, 2, "NORTH") print(current_bot) current_bot.place(6, 6, "NORTH") print(current_bot) print("Not yet implemented") if __name__ == "__main__": main()