#include <Arduino.h>
#include "hello.h"
#include "Cat.h"
#include "Dog.h"
void setup();
void loop();
#line 1 "/Users/ApigeeCorporation/Software/leo/examples/test-project/src/sketch_apr07a.ino"
//#include "hello.h"
//#include "Cat.h"
//#include "Dog.h"

Dog rosie;
Cat missy;

void setup() {
  // put your setup code here, to run once:
  
}

void loop() {
  // put your main code here, to run repeatedly:
  hello_world();
  missy.meow();
  rosie.bark();
}
