Files
CMLeonOS/shell/Commands/System/TimeCommand.cs

13 lines
219 B
C#
Raw Normal View History

2026-02-04 22:09:01 +08:00
using System;
namespace CMLeonOS.Commands.System
{
public static class TimeCommand
{
public static void ProcessTime()
{
Console.WriteLine(DateTime.Now.ToString());
}
}
}