9 lines
310 B
Dart
9 lines
310 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 d4rt_formulas;
|
||
|
|
|
||
|
|
export 'formula_models.dart';
|
||
|
|
export 'formula_evaluator.dart';
|