Cairo Args Runner
Overview
Cairo Args Runner is a streamlined utility for executing Cairo 1 programs with command-line arguments. It enhances the user experience by enabling direct argument specification in the command line, thus simplifying the execution of Cairo programs.
How to Use
Basic Usage
To use Cairo Args Runner, you need to:
- Navigate to the target directory of your Cairo program.
- Build the program using
scarb build. - Run the program with the desired arguments.
Crate Installation via Cargo
You can also install this crate directly using the cargo install command.
To do this, run the following command in your terminal:
Example
Run a main function from the complex package located in examples/complex,
passing [[1, 2, 4, 8, 16], [1, 2, 3, 4, 5, 6]] as the argument:
|
Additional Examples
Here are more examples for running different Cairo programs:
Fibonacci Sequence Example
|
Structs Example
|
Summation Example
|
These examples demonstrate the versatility and ease of using Cairo Args Runner for different types of Cairo 1 programs.