You are on page 1of 1

using System;

using Packt.Shared;
using static System.Console;

namespace PeopleApp
{
    class Program
    {
        static void Main(string[] args)
        {
            // Console.WriteLine("Hello World!");
            var bob = new Person();
            WriteLine(bob.ToString());      
        }
    }
}

You might also like