Hello World
Sign in to test your solution.
// Hello World program
using System;
class Submission
{
// -------------------------
// Subprograms
// -------------------------
static void output()
{
Console.WriteLine("Hello World");
}
// -------------------------
// Main program
// -------------------------
public static void Main(string[] args)
{
output();
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.