Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
0xMrR0b0t authored Dec 11, 2022
1 parent 5efd5d1 commit b5287c5
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,19 @@
from queue import Queue
import threading
from datetime import datetime

import os

def clear():

# for windows
if os.name == 'nt':
_ = os.system('cls')

# for mac and linux(here, os.name is 'posix')
else:
_ = os.system('clear')
clear()

print('''
$$$$$$$\ $$\
Expand Down

0 comments on commit b5287c5

Please sign in to comment.