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
42 lines (39 loc) · 1.14 KB
/
Program.cs
File metadata and controls
42 lines (39 loc) · 1.14 KB
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
34
35
36
37
38
39
40
41
42
string[] attendees =
[
"William Qu",
"Angus Wong",
"Ryan Chang",
"Ethan Burnet",
"Dhruti Maniar",
"Aidan Inglis",
"Christopher Rudel",
"Nikita Bukhtoiarov",
"Spongebob Squarepants",
"Inano",
"Kevin",
"Liam McCallum",
"monique soth",
"Aidan Smith",
"Hamid",
"Alan",
"Manny",
"Sean!!!",
"Jeffrey Chan",
"Kris Hsu"
// 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}");
}