exercism/csharp/hello-world/HelloWorld.cs
Anthony C 0aedeb08a0 Kotlin - WIP Meetup
C# - Hello World and Leap Year Complete
2017-08-12 00:22:44 -04:00

9 lines
130 B
C#

using System;
public static class HelloWorld
{
public static string Hello()
{
return "Hello, World!";
}
}