65db7e9824
Signed-off-by: Olli Janatuinen <olli.janatuinen@gmail.com>
14 lines
236 B
C#
Executable File
14 lines
236 B
C#
Executable File
using System;
|
|
|
|
public class Program
|
|
{
|
|
public static void Main()
|
|
{
|
|
var name = Environment.GetEnvironmentVariable("NAME");
|
|
if (String.IsNullOrEmpty(name)) {
|
|
name = "John Doe";
|
|
}
|
|
Console.Write(Greeting.GetMessage(name));
|
|
}
|
|
}
|