mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
8 lines
207 B
C#
8 lines
207 B
C#
namespace Games.Common.IO;
|
|
|
|
internal static class Strings
|
|
{
|
|
internal const string NumberExpected = "!Number expected - retry input line";
|
|
internal const string ExtraInput = "!Extra input ignored";
|
|
}
|