2022-08-04 05:43:54 +03:00
|
|
|
# Leo Examples
|
|
|
|
|
2023-09-29 18:13:49 +03:00
|
|
|
This directory includes the following Leo code including:
|
2022-08-04 05:43:54 +03:00
|
|
|
|
|
|
|
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
|
2023-09-29 18:13:49 +03:00
|
|
|
5. Message -> Initialization of a struct
|
|
|
|
6. Token -> Record example
|
|
|
|
|
|
|
|
along with many more.
|
2022-08-04 05:43:54 +03:00
|
|
|
|
2023-07-20 04:04:09 +03:00
|
|
|
## Run Guide
|
2022-08-04 05:43:54 +03:00
|
|
|
|
|
|
|
To run each program, run:
|
|
|
|
```bash
|
2023-09-29 18:13:49 +03:00
|
|
|
leo run main <inputs>
|
2022-08-04 05:43:54 +03:00
|
|
|
```
|
2023-07-20 04:04:09 +03:00
|
|
|
|
|
|
|
## Execute Guide
|
|
|
|
|
|
|
|
To execute each program call, run:
|
|
|
|
```bash
|
2023-09-29 18:13:49 +03:00
|
|
|
leo execute main <inputs>
|
|
|
|
```
|