mirror of
https://github.com/AleoHQ/leo.git
synced 2024-11-10 18:22:19 +03:00
d44457fc32
* bump snarkvm rev * update default gitignore * impl leo execute * bump snarkvm 0.14.5 * modify examples wip * update run.sh examples * impl env file * clippy warning * fix auction example * fix auction example env * generate new private key for new env - tests failing due to env not found err * commit error changes * Fix tests; clippy * Get examples working * leo build checks that build dir is well formed; clippy * Clean up * Update examples/README.md Co-authored-by: d0cd <pranavsaig@gmail.com> Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com> * do not commit .avm files * use snarkvm commands --------- Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com> Co-authored-by: Pranav Gaddamadugu <pranav@aleo.org> Co-authored-by: d0cd <pranavsaig@gmail.com> |
||
---|---|---|
.. | ||
auction | ||
basic_bank | ||
battleship | ||
bubblesort | ||
core | ||
fibonacci | ||
groups | ||
hackers-delight | ||
helloworld | ||
interest | ||
lottery | ||
message | ||
simple_token | ||
tictactoe | ||
token | ||
twoadicity | ||
vote | ||
README.md |
Leo Examples
This directory includes the following Leo code examples:
- Hello World -> Basic Sum of two u32
- Groups -> Basic operations over groups
- Core -> Core functions over a field type
- Bubblesort -> Sorting algorithms over a tuple
- Import point -> Import code from another file
- Message -> Initialization of a struct
- Token -> Record example
Run Guide
To run each program, run:
leo run main
This command will look in the input file inputs/*.in where should find a section [main] and use the variables as inputs to the program.
Execute Guide
To execute each program call, run:
leo execute main <inputs> --endpoint <endpoint>