mirror of
https://github.com/AleoHQ/leo.git
synced 2024-11-11 04:49:15 +03:00
.. | ||
auction | ||
battleship | ||
broken_bank | ||
bubblesort | ||
core | ||
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 circuits functions over a field type
- Bubblesort -> Sorting algorithms over a tuple
- Import point -> Import code from an other file
- Message -> Initialization of a circuit type
- 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 circuits.
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.