ohthatsa_old/lib/pages/practice/PracticeGenerator.dart
2020-11-01 16:49:04 +01:00

5 lines
No EOL
97 B
Dart

abstract class PracticeGenerator {
bool check(int other);
void next();
String toString();
}