# arith **Repository Path**: changleibox/arith ## Basic Information - **Project Name**: arith - **Description**: 四则运算 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-06-06 - **Last Updated**: 2024-11-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: Flutter ## README TODO: Put a short description of the package here that helps potential users know whether this package might be useful for them. ## Features TODO: List what your package can do. Maybe include images, gifs, or videos. ## Getting started TODO: List prerequisites and provide or point to information on how to start using the package. ## Usage TODO: Include short and useful examples for package users. Add longer examples to `/example` folder. ```dart const _expression = '-1 + (amount + (-2.9 - (-3 * -4 / 5 + 6 - (7.1 + 8.9))) + (sqrt(9) - 10) * -11 + price) + 13.8'; const _variables = {'amount': 1000000.1, 'price': 898.978}; void main() { print(decodeArith(_expression).call(_variables)); print(decodeArith(_expression).toString(variables: _variables, isCompat: false)); } ``` ## Additional information TODO: Tell users more about the package: where to find more information, how to contribute to the package, how to file issues, what response they can expect from the package authors, and more.