mirror of
https://github.com/Smaug123/WoofWare.PawPrint
synced 2025-10-09 15:58:39 +00:00
15 lines
244 B
C#
15 lines
244 B
C#
using System;
|
|
|
|
namespace HelloWorldApp
|
|
{
|
|
class Program
|
|
{
|
|
static int Main(string[] args)
|
|
{
|
|
var c = Console.BackgroundColor;
|
|
var d = Console.ForegroundColor;
|
|
return 1;
|
|
}
|
|
}
|
|
}
|