forked from codenetwork/git-101-2026
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
27 lines (24 loc) · 891 Bytes
/
Program.cs
File metadata and controls
27 lines (24 loc) · 891 Bytes
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
string[] attendees =
[
"William Qu",
"Angus Wong",
"Ryan Chang",
"Bart Simpson",
"Shrek",
// Add your name above this line! (Do not delete this)
];
Console.WriteLine("Hello World!");
Console.WriteLine("""
____ _ _ _ _ _
/ ___|___ __| | ___ | \ | | ___| |___ _____ _ __| | __
| | / _ \ / _` |/ _ \ | \| |/ _ \ __\ \ /\ / / _ \| '__| |/ /
| |__| (_) | (_| | __/ | |\ | __/ |_ \ V V / (_) | | | <
\____\___/ \__,_|\___| |_| \_|\___|\__| \_/\_/ \___/|_| |_|\_\
""");
Console.WriteLine("Welcome to the Git 101 Workshop for Code Network!");
Console.WriteLine("\nThese are the awesome coders that attended this workshop:");
Console.WriteLine("================================================================");
foreach (string attendee in attendees)
{
Console.WriteLine($"- {attendee}");
}