-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathProgram.cs
More file actions
49 lines (46 loc) · 1.27 KB
/
Program.cs
File metadata and controls
49 lines (46 loc) · 1.27 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
46
47
48
49
string[] attendees =
[
"William Qu",
"Angus Wong",
"Ryan Chang",
"Ethan Burnet",
"Dhruti Maniar",
"Aidan Inglis",
"Christopher Rudel",
"Nikita Bukhtoiarov",
"Spongebob Squarepants",
"Inano",
"Kevin",
"Il'ya Allen",
"Jason Zhao",
"Liam McCallum",
"monique soth",
"Aidan Smith",
"Hamid",
"Alan",
"Manny",
"Kenneth",
"Sean!!!",
"Jeffrey Chan",
"Teppei",
"Kris Hsu",
"Bharath Sampath",
"Shreyash Turai",
"Minh Trung",
// 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}");
}