示例#1
0
文件: main.py 项目: DePierre/re56_pwc
#!/usr/bin/python2
# -*-coding:utf-8 -*
"""

    main.py

    Entry point of the simulation. Its only job is to run the simulation.

"""


from simulator import Simulator


if __name__ == '__main__':
    sim = Simulator()
    sim.on_execute()