diff --git a/dg_clt/screen.py b/dg_clt/screen.py new file mode 100644 index 0000000..65d8b81 --- /dev/null +++ b/dg_clt/screen.py @@ -0,0 +1,6 @@ +import os +import subprocess + + +def clear(): + subprocess.call('clear' if os.name == 'posix' else 'cls')