-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.py
20 lines (16 loc) · 1.01 KB
/
Main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# coding=utf-8
"""
*************************************************************************************************
* Trabalho 02 - Linguagens Formais e Autômatos Finitos *
* *
* @teacher: Walace Rodrigues *
* @author: Matheus Calixto - 0011233 *
* @author: Samuel Terra - 0011946 *
* @lastUpdate: 27/06/2017 *
* *
*************************************************************************************************
"""
from Controller.Referee import Referee
if __name__ == '__main__':
Start = Referee()
Start.thread_trigger()