exercism/csharp/two-fer/TwoFer.cs

8 lines
155 B
C#

using System;
public static class TwoFer
{
public static string Name(string input = null)
=> $"One for {(input ?? "you")}, one for me.";
}