mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 15:15:47 +03:00
d83c4be330
* get_or_init -> get_or_use * use mapping get_or_use in examples * fix codegen for Mapping::get_or_use * fix tests for Mapping::get_or_use * fix warnings, update snarvm rev * bump circle rust img v1.70 * fix codegen * update snarkvm rev and regen tests * Update compiler/parser/src/parser/expression.rs Co-authored-by: d0cd <pranavsaig@gmail.com> Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com> * Delete program.json Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com> * Delete program.json Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com> --------- Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com> Co-authored-by: d0cd <pranavsaig@gmail.com> |
||
---|---|---|
.. | ||
auction | ||
basic_bank | ||
battleship | ||
bubblesort | ||
core | ||
fibonacci | ||
groups | ||
hackers-delight | ||
helloworld | ||
interest | ||
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
Build Guide
To compile each example, run:
leo build
When you run this command for the first time the snarkvm parameters (universal setup) will be downloaded, these are necessary to run the programs.
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.