update readme

This commit is contained in:
collin 2020-07-05 23:43:25 -07:00
commit 8fbf2b2e7e

114
README.md
View File

@ -1,6 +1,6 @@
# The Leo Programming Language
[![Build Status](https://travis-ci.com/AleoHQ/leo.svg?token=Xy7ht9JdPvr4xSgbPruF&branch=master)](https://travis-ci.com/AleoHQ/leo)
![CI](https://github.com/AleoHQ/leo/workflows/CI/badge.svg)
[![codecov](https://codecov.io/gh/AleoHQ/leo/branch/master/graph/badge.svg?token=S6MWO60SYL)](https://codecov.io/gh/AleoHQ/leo)
## Compiler Architecture
@ -42,9 +42,9 @@ Leo supports `let` and `const` keywords for variable definition.
**Allocated** variables define private variables in the constraint system. Their value is constrained in the circuit on initialization.
**Constant** variables do not define a variable in the constraint system. Their value is constrained in the circuit on computation with an **allocated** variable.
**Constant** variables can be mutable. They do not have the same functionality as `const` variables in other languages.
```rust
function addOne() -> {
**Constant** variables cannot be mutable. They have the same functionality as `const` variables in other languages.
```js
function add_one() -> {
let a = 0u8; // allocated, value enforced on this line
const b = 1u8; // constant, value not enforced yet
@ -57,7 +57,7 @@ Computations are expressed in terms of arithmetic circuits, in particular rank-1
* All defined variables in Leo are immutable by default.
* Variables can be made mutable with the `mut` keyword.
```rust
```js
function main() {
let a = 0u32;
//a = 1 <- Will fail
@ -67,10 +67,23 @@ function main() {
}
```
## Addresses
Addresses are defined to enable compiler-optimized routines for parsing and operating over addresses. These semantics will be accompanied by a standard library in a future sprint.
```js
function main(owner: address) {
let sender = address(aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8);
let receiver: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;
assert_eq!(owner, sender);
assert_eq!(sender, receiver);
}
```
## Booleans
Explicit types are optional.
```rust
```js
function main() -> bool {
let a: bool = true || false;
let b = false && false;
@ -87,7 +100,7 @@ function main() -> bool {
### Integers
Supported integer types: `u8`, `u16`, `u32`, `u64`, `u128`
```rust
```js
function main() -> u32 {
let a = 2u32; // explicit type
let a: u32 = 1 + 1; // explicit type
@ -101,7 +114,7 @@ function main() -> u32 {
```
### Field Elements
```rust
```js
function main() -> field {
let a = 1000field; // explicit type
let a: field = 21888242871839275222246405745257275088548364400416034343698204186575808495617; // explicit type
@ -113,11 +126,11 @@ function main() -> field {
}
```
### Affine Points
The set of affine points on the elliptic curve passed into the leo compiler forms a group.
### Group Elements
An affine point on the elliptic curve passed into the Leo compiler forms a group.
Leo supports this set as a primitive data type.
```rust
```js
function main() -> group {
let a = 1000group; // explicit type
let a = (21888242871839275222246405745257275088548364400416034343698204186575808495617, 21888242871839275222246405745257275088548364400416034343698204186575808495617)group; // explicit type
@ -128,7 +141,7 @@ function main() -> group {
```
### Operator Assignment Statements
```rust
```js
function main() -> u32 {
let mut a = 10;
a += 5;
@ -143,7 +156,7 @@ function main() -> u32 {
## Arrays
Leo supports static arrays with fixed length.
```rust
```js
function main() -> u32[2] {
// initialize an integer array with integer values
let mut a: u32[3] = [1, 2, 3];
@ -171,7 +184,7 @@ function main() -> u32[2] {
```
### Multidimensional Arrays
```rust
```js
function main() -> u32[3][2] {
let m = [[0u32, 0u32], [0u32, 0u32]];
@ -191,7 +204,7 @@ Ternary `if [cond] ? [first] : [second];` expressions are the cheapest form of c
Since `first` and `second` are expressions, we can resolve their values before proceeding execution.
In the underlying circuit, this is a single bit multiplexer.
```rust
```js
function main() -> u32 {
let y = if 3==3 ? 1 : 5;
return y
@ -202,7 +215,7 @@ function main() -> u32 {
Leo supports the traditional `if [cond] { [first] } else { [second] }` which can be chained using `else if`.
Since `first` and `second` are one or more statements, they resolve to separate circuits which will all be evaluated.
In the underlying circuit this can be thought of as a demultiplexer.
```rust
```js
function main(a: bool, b: bool) -> u32 {
let mut res = 0u32;
@ -219,7 +232,7 @@ function main(a: bool, b: bool) -> u32 {
```
### For loop
```rust
```js
function main() -> fe {
let mut a = 1field;
for i in 0..4 {
@ -230,7 +243,7 @@ function main() -> fe {
```
## Functions
```rust
```js
function test1(a : u32) -> u32 {
return a + 1
}
@ -250,7 +263,7 @@ function main() -> u32 {
### Function Scope
```rust
```js
function foo() -> field {
// return myGlobal <- not allowed
return 42field
@ -264,7 +277,7 @@ function main() -> field {
### Multiple returns
Functions can return tuples whose types are specified in the function signature.
```rust
```js
function test() -> (u32, u32[2]) {
return 1, [2, 3]
}
@ -279,13 +292,13 @@ function main() -> u32[3] {
### Function inputs
Main function inputs are allocated private variables in the program's constraint system.
`a` is implicitly private.
```rust
```js
function main(a: field) -> field {
return a
}
```
Normal function inputs are passed by value.
```rust
```js
function test(mut a: u32) {
a = 0;
}
@ -303,7 +316,7 @@ Circuits in Leo are similar to classes in object oriented langauges. Circuits ar
#### Circuit member values
Members can be defined as fields which hold primitive values.
```rust
```js
circuit Point {
x: u32
y: u32
@ -316,11 +329,11 @@ function main() -> u32 {
#### Circuit member functions
Members can also be defined as functions.
```rust
```js
circuit Foo {
function echo(x: u32) -> u32 {
return x
}
function echo(x: u32) -> u32 {
return x
}
}
function main() -> u32 {
@ -331,11 +344,11 @@ function main() -> u32 {
#### Circuit member static functions
Circuit functions can be made static, enabling them to be called without instantiation.
```rust
```js
circuit Foo {
static function echo(x: u32) -> u32 {
return x
}
static function echo(x: u32) -> u32 {
return x
}
}
function main() -> u32 {
@ -344,10 +357,10 @@ function main() -> u32 {
```
#### `Self` and `self`
The `Self` keyword references the circuit definition.
```rust
circuit Foo {
b: bool
The `Self` keyword is supported in circuit functions.
```js
circuit Circ {
b: bool
static function new() -> Self { // Self resolves to Foo
return Self { b: true }
@ -387,19 +400,19 @@ Leo supports importing functions
}
} and circuits by name into the current file with the following syntax:
```rust
```js
import [package].[name];
```
#### Import Aliases
To import a name using an alias:
```rust
```js
import [package].[name] as [alias];
```
#### Import Multiple
To import multiple names from the same package:
```rust
```js
import [package].(
[name_1],
[name_2] as [alias],
@ -408,7 +421,8 @@ import [package].(
#### Import Star
To import all symbols from a package:
```rust
Note that this will only import symbols from the package library `lib.leo` file.
```js
import [package].*;
```
@ -416,13 +430,13 @@ import [package].*;
You can import from a local file in the same package using its direct path.
`src/` directory by using its `[file].leo` as the `[package]` name.
```rust
```js
import [file].[name];
```
#### Example:
`src/bar.leo`
```rust
```js
circuit Bar {
b: u32
}
@ -433,7 +447,7 @@ function baz() -> u32 {
```
`src/main.leo`
```rust
```js
import bar.(
Bar,
baz
@ -447,20 +461,20 @@ function main() {
### Foreign
You can import from a foreign package in the `imports/` directory using its `[package]` name.
```rust
```js
import [package].[name];
```
#### Example:
`imports/bar/src/lib.leo`
```rust
```js
circuit Bar {
b: u32
}
```
`src/main.leo`
```rust
```js
import bar.Bar;
function main() {
@ -470,7 +484,7 @@ function main() {
### Package Paths
Leo treats directories as package names when importing.
```rust
```js
import [package].[directory].[file].[name]
```
@ -479,14 +493,14 @@ We wish to import the `Baz` circuit from the `baz.leo` file in the `bar` directo
`imports/foo/src/bar/baz.leo`
```rust
```js
circuit Baz {
b: u32
}
```
`src/main.leo`
```rust
```js
import foo.bar.baz.Baz;
function main() {
@ -499,7 +513,7 @@ function main() {
### Assert Equals
This will enforce that the two values are equal in the constraint system.
```rust
```js
function main() {
assert_eq!(45, 45);
@ -513,7 +527,7 @@ function main() {
Use the `test` keyword to add tests to a leo program. Tests must have 0 function inputs and 0 function returns.
```rust
```js
function main(a: u32) -> u32 {
return a
}