ancient_number_converter 0.0.1
ancient_number_converter: ^0.0.1 copied to clipboard
The ancient_number_converter library allows you to format and parse ancient numbers.
example/ancient_number_converter_example.dart
import 'package:ancient_number_converter/ancient_number_converter.dart';
void main() {
final roman = RomanNumberConverter();
final year = 'MMXXV';
print('Example ${roman.format(1)}:');
print('This lib was first published in $year (${roman.tryParse(year)?.toInt()})');
}