Template repository: https://gitlab.com/gitlab-org/project-templates/dotnetcore Commit SHA: ca0b160689347a01246188a7042e2562103d1b5c
12 lines
180 B
C#
12 lines
180 B
C#
using System;
|
|
|
|
namespace dotnetcore
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine("Hello World!");
|
|
}
|
|
}
|
|
}
|