leo/examples
d0cd 541209a92c
Merge pull request #1997 from AleoHQ/example-twoadicity
[examples] twoadicity: number of factors of two in field value
2022-08-15 08:52:10 -07:00
..
auction [examples] Add explanations to auction example. 2022-08-08 16:34:28 -07:00
bubblesort update examples 2022-08-05 18:32:07 -07:00
core update examples 2022-08-05 18:32:07 -07:00
groups update examples 2022-08-05 18:32:07 -07:00
helloworld update helloworld 2022-08-05 18:38:50 -07:00
import_point update examples 2022-08-05 18:32:07 -07:00
interest [examples] Change 'period' to 'iteration'. 2022-08-08 16:51:37 -07:00
message update examples 2022-08-05 18:32:07 -07:00
tictactoe [examples] Expand tic-tac-toe documentation a bit. 2022-08-08 17:03:34 -07:00
token update examples 2022-08-05 18:32:07 -07:00
twoadicity reword comment 2022-08-09 10:13:09 -07:00
README.md created a root readme in the examples folder 2022-08-04 04:43:54 +02: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
  3. Core -> Core circuits functions over a field type
  4. Bubblesort -> Sorting algorithms over a tuple
  5. Import point -> Import code from an other file
  6. Message -> Initialization of a circuit type
  7. 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.