using System;
public class Cat
{
//[Code] Create a public field (name)
//[Code] Create Constructor
//Create Methods that describe the behavior of the class
public void meow()
Console.WriteLine("Meowwwwww");
}
public class Program
public static void Main()
//[Code] Create a cat object
//[Code] print out the cat's name
//[Code] Call the cat's action (meow())