Rage-Server-Template/Rage/Program.cs

12 lines
190 B
C#
Raw Normal View History

2022-11-24 00:31:43 +00:00
using System;
namespace Rage
{
internal class Program
{
private static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}