C# - Explore a new language
This is the weekend challenge of MLH LHD
using System;
namespace HelloWorldApp {
class Geeks {
// Main Method
static void Main(string[] args) {
// printing Hello World!
Console.WriteLine("Hello World!");
Console.ReadKey();
}
}
}
Log in or sign up for Devpost to join the conversation.