mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 07:07:07 +03:00
d0c29ce8e0
* Remove gates from tests * Remove Finalize test namespace * Remove gates from examples * Remove gates from compiler * Regen expectations * Add test that gates is allowed as a standard field of a record * Update Rust version in CI * Add check for MAX_MAPPINGS |
||
---|---|---|
.. | ||
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.