- Implements basic string calculator with 5 intentional bugs - Bug 1: Empty string returns 1 instead of 0 - Bug 2: Single number has off-by-one error - Bug 3: Summation loop misses last element - Bug 4: Newline delimiter not properly handled - Bug 5: Custom delimiter parsing broken - Ready for Bug Hunt Kata with TDD approach
3 lines
103 B
Dart
3 lines
103 B
Dart
void main(List<String> arguments) {
|
|
print('TDD Katas exercises, please read the README.md file.');
|
|
}
|