Created
September 20, 2021 20:33
-
-
Save rruntsch/c19aa646e27910391ceca03ef96c666e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
/* This program writes "Hello world!" to the console window. | |
It also demonstrates the use of multi-line comments. */ | |
namespace CommentMulti | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.WriteLine("Hello World!"); /* This multi-line style of comments can reside on a single-line, too. */ | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment