exercism/csharp/two-fer/TwoFer.cs

8 lines
155 B
C#
Raw Normal View History

2018-03-02 22:27:55 +00:00
using System;
public static class TwoFer
{
public static string Name(string input = null)
=> $"One for {(input ?? "you")}, one for me.";
}