A classic hello world for MLH Beginners Week.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hello_World
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("hello, world!");
}
}
}
Log in or sign up for Devpost to join the conversation.