mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-26 04:41:52 -08:00
8 lines
189 B
C#
8 lines
189 B
C#
namespace Poetry;
|
|
|
|
internal static class IOExtensions
|
|
{
|
|
internal static void WritePhrase(this IReadWrite io, Context context)
|
|
=> Phrase.GetPhrase(context).Write(io, context);
|
|
}
|