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

13 lines
228 B
C#
Raw Permalink Normal View History

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