leo/examples
2022-08-05 11:56:38 -07:00
..
auction [examples] Get this to compile at least. 2022-08-03 23:21:54 -07:00
bubblesort first update of the bubble sort readme 2022-08-04 04:46:44 +02:00
core add import example, remove directory nesting, improve examples readme 2022-08-01 16:04:00 -07:00
groups update group example readme 2022-08-04 04:44:46 +02:00
helloworld update helloworld readme example 2022-08-04 04:45:47 +02:00
import_point fix import example and logging output 2022-08-01 16:23:20 -07:00
message add import example, remove directory nesting, improve examples readme 2022-08-01 16:04:00 -07:00
token impl nonce 2022-08-03 13:35:58 -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.