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