14 lines
301 B
Python
14 lines
301 B
Python
#
|
|
# File: main.py
|
|
# Description: The mainn entrance of the whole program
|
|
# Author: ZiTing Wang
|
|
# Student ID: 2218040103
|
|
# This is my own work as defined by
|
|
# the University's Academic Misconduct Policy.
|
|
#
|
|
from TonsODice import TonsODice
|
|
|
|
if __name__ == '__main__':
|
|
tod = TonsODice()
|
|
tod.run()
|