Skip to content

Instantly share code, notes, and snippets.

@Mazday21
Last active April 17, 2022 08:44
Show Gist options
  • Save Mazday21/b24a7f26f9b16c7aa51050e2c73e2841 to your computer and use it in GitHub Desktop.
Save Mazday21/b24a7f26f9b16c7aa51050e2c73e2841 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
internal class Program
{
static void Main(string[] args)
{
string exitCicle = "";
while (exitCicle != "exit")
{
Console.WriteLine("Введите exit либо мучайтесь дальше");
string message = Console.ReadLine();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment