Skip to content

Instantly share code, notes, and snippets.

@berkus
Created September 17, 2013 14:16
Show Gist options
  • Save berkus/6594901 to your computer and use it in GitHub Desktop.
Save berkus/6594901 to your computer and use it in GitHub Desktop.
Boo
class A {
public:
int func() { return 21; }
};
class B : public A {
public:
int func() { return A::func(); }
};
int main()
{
B test;
return test.func();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment