Welcome to my new blog!

namespace Delegate.Blog
{
    public class Program
    {
        bool IsAlive => true;

        [STAThread]
        static void Main(string[] args)
        {
            while(IsAlive)
                System.Console.WriteLine("Write Blog");
        }
    }
}