using System; namespace CMLeonOS.Commands.System { public static class ClearCommand { public static void ProcessClear() { Console.Clear(); } } }