Initial commit

This commit is contained in:
BarsTiger
2022-01-23 21:38:12 +02:00
commit 001eb4b555
15 changed files with 554 additions and 0 deletions

5
console.py Normal file
View File

@@ -0,0 +1,5 @@
import os
def cls():
os.system('cls' if os.name == 'nt' else 'clear')