Files
WoofWare.PawPrint/WoofWare.PawPrint.Test/sourcesImpure/WriteLine.cs
Smaug123 9bafd0f4b0 WIP
2025-08-02 20:57:53 +01:00

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;
}
}
}