#include "Dog.h"

 

int main()

{

 

// Instantiate a Dog named fido

  Dog fido;

 

  // Tell fido to bark (call the bark method in fido)

  fido.bark();

 

  return 0;

}