cargo run --bin cairo-run -- -p /path/to/file.cairo
If we want to run code that is gas tested:
cargo run --bin cairo-run -- -p /path/to/file.cairo --available-gas 200
We currently only run the main
function with no arguments beside implicits.
```
fn main() -> Option::
/// Calculates fib...
fn fib(a: felt252, b: felt252, n: felt252) -> Option::
``` // Calculates fib... fn main() -> u128 { fib(1u128, 1u128, 100_u128) }
fn fib(a: u128, b: u128, n: u128) -> u128 { if n == 0 { a } else { fib(b, a + b, n - 1_u128) } } ```
withdraw_gas
will not compile without --available-gas
value.withdraw_gas
will not compile with --available-gas
value.--print-full-memory
should probably be used, to actually see the values contained in the array.