public static void Main()
Console.WriteLine("Do you want to put an item in your basket? - Enter true for yes, false for no");
Choice = bool.Parse(Console.ReadLine());
Console.WriteLine("Please enter the price of the item: ");
itemCost = double.Parse(Console.ReadLine());
totalCost = totalCost + itemCost;
Console.WriteLine("Do you want to put another item in your basket? - Enter true for yes, false for no");
Choice = bool.Parse(Console.ReadLine());
Console.WriteLine("You have {0} items in your basket. The total cost of your basket is: {1}" ,items, totalCost);