-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.py
46 lines (41 loc) · 1.42 KB
/
start.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import os
import time
os.system("resize -s 24 100 ")
def clearterm():
os.system("clear")
clearterm()
print('''
_
| |
_ __ _ _ _ __ ___ | |__ ___ _ __
| '_ \| | | | '_ ` _ \| '_ \ / _ \ '__|
| | | | |_| | | | | | | |_) | __/ |
|_| |_|\__,_|_| |_| |_|_.__/ \___|_|
___ ___ _ ____ _____ _ __| |_ ___ _ __
/ __/ _ \| '_ \ \ / / _ \ '__| __/ _ \ '__|
| (_| (_) | | | \ V / __/ | | || __/ |
\___\___/|_| |_|\_/ \___|_| \__\___|_|
loading
''')
os.system("g++ -Wall -c 'master.cpp' ")#compile
os.system("g++ -Wall -o 'master' 'master.cpp' ")#build
clearterm()
# print(''' _
# _
# | |
# _ __ _ _ _ __ ___ | |__ ___ _ __
# | '_ \| | | | '_ ` _ \| '_ \ / _ \ '__|
# | | | | |_| | | | | | | |_) | __/ |
# |_| |_|\__,_|_| |_| |_|_.__/ \___|_|
# ___ ___ _ ____ _____ _ __| |_ ___ _ __
# / __/ _ \| '_ \ \ / / _ \ '__| __/ _ \ '__|
# | (_| (_) | | | \ V / __/ | | || __/ |
# \___\___/|_| |_|\_/ \___|_| \__\___|_|
#
#
#
#
#
# ''')
os.system("./master")#run
clearterm()