Implement poetry generator

This commit is contained in:
Andrew Cooper
2022-09-29 22:46:10 +10:00
parent 399a2a7e81
commit f27908a3e4
6 changed files with 166 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace Poetry;
internal static class IOExtensions
{
internal static void WritePhrase(this IReadWrite io, Context context)
=> Phrase.GetPhrase(context).Write(io, context);
}