cellular-automata/lib/src/Rule.dart

6 lines
66 B
Dart

class Rule {
final Function evaluate;
Rule(this.evaluate);
}