# PowerFX Rust Examples
This folder contains various examples demonstrating the usage of the PowerFX Rust library. Each example showcases different features and functionalities of the library.
## Running the Examples
To run any of the examples, use the following command:
```sh
cargo run --example <example_name>
```
Replace `<example_name>` with the name of the example you want to run. For instance, to run the `add` example, use:
```sh
cargo run --example add
```
## Available Examples
- **add**: Demonstrates the basic usage of the PowerFX library, adding two numbers.
- **variables**: Shows variable usage.
- **filter**: Filtering records in a table.
- **average**: Aggregation functions.
- **custom_function**: Demonstrates how to build and use a custom function in your Power Fx script.
Feel free to explore and modify the examples to better understand how to use PowerFX in your own projects.