Files
CMLeonOS/shell/Commands/Info/About.cs

14 lines
270 B
C#
Raw Normal View History

2026-02-04 19:04:14 +08:00
using System;
namespace CMLeonOS.Commands
{
public static class AboutCommand
{
public static void ProcessAbout()
{
Console.WriteLine("CMLeonOS Project");
2026-02-26 13:33:53 +08:00
Console.WriteLine("By LeonOS 2 Developer Team");
2026-02-04 19:04:14 +08:00
}
}
}