mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-25 04:15:45 -08:00
12 lines
213 B
C#
12 lines
213 B
C#
using Games.Common.IO;
|
|
using Love;
|
|
using Love.Resources;
|
|
|
|
var io = new ConsoleIO();
|
|
|
|
io.Write(Resource.Streams.Intro);
|
|
|
|
var message = io.ReadString("Your message, please");
|
|
|
|
io.Write(new LovePattern(message));
|