using System;
public class Program
{
public static void Main()
Console.WriteLine("Your best Friend App");
Console.WriteLine("Hi. What do your pals call you?"); //writes out a message to the screen
//sytax: [type] [variable name]
//create a String to store user's name
Console.WriteLine(3.14.ToString("C"));
//read in a line of data from screen
//Console.WriteLine(user + ", how is your day going?");
//create a String for feeling
//Console.WriteLine("I am feeling " +feeling+" too!");
Console.WriteLine("");
}