Created
December 21, 2017 13:44
-
-
Save davlgd/af0811d97188fbee607c2990553b8ff5 to your computer and use it in GitHub Desktop.
HelloWorld - Etape 3
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; | |
namespace HelloWorld | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.ForegroundColor = ConsoleColor.Green; | |
string textToShow = "Hello, World !"; | |
Console.Write(textToShow); | |
Console.Read(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment