GeneticType
The GeneticType paradigm is a Type Pattern designed to allow evolutionary mutation of objects.
Each interaction with an object further refines mutation history, which guides further behavior without having to manually link implementations across your a code architecture.
See the GeneticType Specification (V1)
Short Example
var pool = ;var DogDefinition = Abstract{supergenePool;}{...};var CatDefinition = Abstract{supergenePool;}{...};// register our definitions in the Gene Poolpool;pool;// create our formvar dog = pool;// interact with form, allowing mutationdog;dog;