Strings refactoring

This commit is contained in:
Ivan Bushchik 2021-10-07 11:04:57 +03:00
parent 9bfce3b5e0
commit 4735714d74

View file

@ -275,7 +275,8 @@ Module Program
Do while fish > 0
Console.ForegroundColor = ConsoleColor.DarkBlue
Console.WriteLine("У Вас {0} фишек.", fish)
Console.Write("Продолжить игру? (Y/n) >>> ")
Console.WriteLine("Продолжить игру? (Y/n):")
Console.Write(">>> ")
Dim temp As String = Console.ReadLine()
If temp = "n" or temp = "N" Then
Exit Sub