mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
8 lines
133 B
C#
8 lines
133 B
C#
using Games.Common.IO;
|
|
|
|
var io = new ConsoleIO();
|
|
|
|
var name = io.ReadString("What's your name");
|
|
|
|
io.WriteLine($"Hello, {name}");
|