8 lines
296 B
Dart
8 lines
296 B
Dart
/// A library for working with mathematical formulas using the d4rt interpreter.
|
|
///
|
|
/// This library provides data models for representing formulas and an evaluator
|
|
/// for executing them using the d4rt Dart interpreter.
|
|
library;
|
|
|
|
export 'formula_models.dart';
|
|
export 'formula_evaluator.dart';
|