|
|
|
|
|
by tinco
5010 days ago
|
|
In all code examples you can press the down arrow to view the horrible (c-style) Javascript source. The javascript seems to be mainly horrible because of the coffeescript code being object oriented and its lack of a more powerful looping construct. |
|
Population = (function() { Population.prototype.genomes = []; })();
This throws a ReferenceError because Population is not defined.
Genome = (function() {
})();After this part Genome will be undefined.