cellular-automata/lib/Rule.dart
2018-07-05 17:59:11 +02:00

5 lines
65 B
Dart

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