Skip to content

Instantly share code, notes, and snippets.

@davlgd
Created December 21, 2017 13:44
Show Gist options
  • Save davlgd/af0811d97188fbee607c2990553b8ff5 to your computer and use it in GitHub Desktop.
Save davlgd/af0811d97188fbee607c2990553b8ff5 to your computer and use it in GitHub Desktop.
HelloWorld - Etape 3
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