👉 In programming, "genically" refers to a type that is generic in nature. It means that it can accept any number of arguments and return anything from that generic type.
For example:
```c++
#include
using namespace std;
class Animal {
public:
virtual void speak() {
cout << "I'm an animal." << endl;
}
};
class Dog : public Animal {
public:
virtual void speak() {
cout << "I'm a dog." <<