12 lines
248 B
C#
12 lines
248 B
C#
|
using System;
|
||
|
|
||
|
namespace BMapSharpTestbench // Note: actual namespace depends on the project name.
|
||
|
{
|
||
|
internal class Program
|
||
|
{
|
||
|
static void Main(string[] args)
|
||
|
{
|
||
|
Console.WriteLine("Hello World!");
|
||
|
}
|
||
|
}
|
||
|
}
|