forked from dcoy/hacktoberfest-dcoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHelloWsharp.cs
33 lines (27 loc) · 957 Bytes
/
HelloWsharp.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HacktoberFestHWcsharp
{
public class HelloWorld
{
static void Main()
{
ConsoleColor oldColor = Console.ForegroundColor; // BG color, don't worry.
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Hello World!");
Console.ReadLine();
Console.WriteLine("This is another take on the 'Hello World' program");
Console.ReadLine();
Console.WriteLine("It's almost like I'm becoming... Intelligent");
Console.ReadLine();
Console.WriteLine("Don't worry, all this is pre-writting, by some boring programmer.");
Console.ReadLine();
Console.WriteLine("Goodbye - Press any key to exit.");
Console.ReadLine();
Console.ReadKey();
}
}
}