leo-lang 3.3.0

The Leo programming language
Documentation
# Leo native testing example

## Overview 

This Leo example consists of a basic addition transition, a transition for minting a record, and a transition for updating a mapping.  The project contains an additional directory with unit tests for each transition.

## Run Guide

To run this program, run:
```bash
leo run <function-name> <inputs>
```

## Execute Guide

To execute this program, run:
```bash
leo execute main
```

## Test Guide

To run all of the unit tests, run:
```bash
leo test
```

To run an individual unit test, supply the test name or a string contained within the test name:
```bash
leo test simple_addition
```
or
```bash
leo test simple
```