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
45 lines (42 loc) · 1.2 KB
/
Program.cs
File metadata and controls
45 lines (42 loc) · 1.2 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
43
44
45
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",
"Kenneth",
"Sean!!!",
"Jeffrey Chan",
"Teppei",
"Kris Hsu",
"Bharath Sampath",
// 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}");
}