fn_express 1.0.0
fn_express: ^1.0.0 copied to clipboard
A Dart package for parsing and evaluating mathematical expressions with support for variables, functions, and constants.
example/fn_express_example.dart
import 'package:fn_express/fn_express.dart';
/// Example demonstrating the Fn Express REPL (Read-Eval-Print Loop).
///
/// This example shows how to use the interactive mathematical expression
/// evaluator. The REPL provides:
/// - Interactive expression evaluation
/// - Variable assignment and management
/// - Built-in help system
/// - Function and operator documentation
///
/// Run this example with: `dart run example/fn_express_example.dart`
void main() {
Repl().start();
}