flake-template-hell/templates/dotnet/DotnetApplication/Program.cs

10 lines
176 B
C#
Raw Normal View History

2024-12-04 16:58:17 +00:00
using System;
namespace DotnetApplication {
class Program {
static void Main(string[] args) {
Console.WriteLine("Hello, world!");
}
}
}