using System;
public class Program
{
public static void Main()
//TODO List
//allow us to exit
//allow us to add tasks
//allow us to view tasks
//allow us to remove items
Console.WriteLine("Welcome to the TODO list app");
while(true)
//start of loop
Console.WriteLine("Here are the options you can select: ");
}