DEV Community

Ivan Ivanov
Ivan Ivanov

Posted on

1. Hello SoftUni

using System;

namespace HelloSoftUni
{
internal class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine("Hello SoftUni");
    }
}
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)