public static void Main()
Console.BackgroundColor = ConsoleColor.Blue;
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine("Type (dotnet run) in the terminal. Otherwise, it will not work. It is only playable in the terminal. Not in output or debug console.");
Console.WriteLine("The game has started!");
Student student = new Student();
Console.WriteLine("Hi there, what is your name?");
student.name = Console.ReadLine();
Console.WriteLine("Hi {0}!, what is your age?", student.name);
student.age = int.Parse(Console.ReadLine());
Console.WriteLine("{0}, you were born between {1} and {2}.", student.name, (2023 - student.age) - 1, (2023 - student.age));
Console.WriteLine("Nice to meet you!");
Console.WriteLine("Oh! Time for dinner!");
Console.WriteLine("Oh I love this food!");
Console.WriteLine("Speaking of food, what food do you like?");
Student studentFood = new Student();
studentFood.name = Console.ReadLine();
Console.WriteLine("I like " + studentFood.name + " too!");
Console.WriteLine("Oh, and " + student.name + ", my name is Shunnonibot.");
Console.WriteLine("Next year, you will be " + (student.age + 1) + " years old.");
Console.WriteLine("And then you will be " + (student.age + 2));
Console.WriteLine("Any special events today?");
Student events = new Student();
events.name = Console.ReadLine();
Console.WriteLine("Cool! So you did " + events.name + "? Cool!");
Console.WriteLine("What show do you like?");
Student Show = new Student();
Show.name = Console.ReadLine();
Console.WriteLine("I love " + Show.name + " too!");
Console.WriteLine("We have a lot in common.");
Console.WriteLine("We both like " + studentFood.name + ", " + events.name + ", and " + Show.name + "! We could be twins!");
Console.WriteLine("Want to see some of my crazy cool custom word diary, " + student.name + "?");
Console.WriteLine("Here are some. I made them for you, " + student.name + "!");
Console.WriteLine("Words :");
Console.WriteLine("Blahblahblahblahblahblahblahblahblahblah : Bunny in sugar");
Console.WriteLine("Blimpire : An empire of blimps that you own, " + student.name + "!");
DataHolder Words = new DataHolder();
Console.WriteLine("Jonaminonipcatonip : Cat nip");
Console.WriteLine("SBOT : My name");
Console.WriteLine("PRINTOMAN : Print it man!");
Console.WriteLine("How did you like my " + Words.number1 + " words, " + student.name + "?");
DataHolder Opinion = new DataHolder();
Opinion.letters1 = Console.ReadLine();
Console.WriteLine("Nice! So you " + Opinion.letters1 + "? Good!");
Console.WriteLine("Maybe we should go hiking! What is the hiker name you have?");
Student HikerName = new Student();
HikerName.name = Console.ReadLine();
Console.WriteLine("I like the name " + HikerName.name + "! I think I will be " + HikerName.name + " too!");
Console.WriteLine("For hours, " + HikerName.name + " and " + HikerName.name + " were walking up on doom mountains.");
Console.WriteLine("And turns out they were just playing pretend.");
Console.WriteLine("And they hung a new poster!");
Console.WriteLine(" ____________________________________________________");
Console.WriteLine("| |");
Console.WriteLine("| |");
Console.WriteLine(" ____________________________________________________");
Console.WriteLine("And of course, it said " + HikerName.name + " and " + HikerName.name + " live here.");
Console.BackgroundColor = ConsoleColor.Red;
Console.ForegroundColor = ConsoleColor.Black;
Console.WriteLine("But what if... they actually wanted to hike?");
Console.WriteLine("Find out in Climbing Simulator!");