2022-08-04 05:43:54 +03:00
|
|
|
# Leo Examples
|
|
|
|
|
|
|
|
This directory includes the following Leo code examples:
|
|
|
|
|
|
|
|
1. Hello World -> Basic Sum of two u32
|
|
|
|
2. Groups -> Basic operations over groups
|
2022-09-30 20:37:29 +03:00
|
|
|
3. Core -> Core functions over a field type
|
2022-08-04 05:43:54 +03:00
|
|
|
4. Bubblesort -> Sorting algorithms over a tuple
|
2022-09-30 20:37:29 +03:00
|
|
|
5. Import point -> Import code from another file
|
|
|
|
6. Message -> Initialization of a struct
|
2022-08-04 05:43:54 +03:00
|
|
|
7. Token -> Record example
|
|
|
|
|
|
|
|
## Build Guide
|
|
|
|
|
|
|
|
To compile each example, run:
|
|
|
|
```bash
|
|
|
|
leo build
|
|
|
|
```
|
2022-09-30 20:37:29 +03:00
|
|
|
When you run this command for the first time the snarkvm parameters (universal setup) will be downloaded, these are necessary to run the programs.
|
2022-08-04 05:43:54 +03:00
|
|
|
|
|
|
|
To run each program, run:
|
|
|
|
```bash
|
|
|
|
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.
|