Files
CMLeonOS/shell/Commands/System/ClearCommand.cs
2026-02-04 22:09:01 +08:00

13 lines
194 B
C#

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