Skip to content

Instantly share code, notes, and snippets.

@trikitrok
Created January 30, 2014 16:04
Show Gist options
  • Save trikitrok/f9454b92102bc76cfac2 to your computer and use it in GitHub Desktop.
Save trikitrok/f9454b92102bc76cfac2 to your computer and use it in GitHub Desktop.
Squeak behaviour implementation
#include "Squeak.h"
#include <iostream>
using namespace std;
Squeak::Squeak() {}
Squeak::~Squeak() {}
void Squeak::quack() {
cout << "Squeak!" << endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment