Post

Hello world

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;

namespace HelloWorldApp
{
    class Program
    {
        static void Main(string[] args)
        {
            // Define personal information
            string fullName = "Hung Vo";
            string nickName = "minhhungit";
            
            // Display greetings and introduction
            Console.WriteLine("Hello, World!");
            Console.WriteLine($"My name is {fullName}.");
            Console.WriteLine($"You can call me {nickName}.");
            Console.WriteLine("Nice to meet you!");
        }
    }
}
This post is licensed under CC BY 4.0 by the author.

Trending Tags