예제 #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()