using System; namespace CMLeonOS.Commands.Utility { public static class BeepCommand { public static void ProcessBeep() { Console.Beep(); } } }