various docs updates

This commit is contained in:
Peli de Halleux
2016-04-05 23:11:48 -07:00
parent baf2c3247f
commit 2aa7c91ca7
5 changed files with 127 additions and 145 deletions

View File

@ -0,0 +1,21 @@
## Variables
[Assign](/reference/variables/assign) (set) a variable's value
```blocks
let x = 0;
```
Get a variable's value
```blocks
let x = 0;
x;
```
[Change](/reference/variables/change-var) a variable's value
```blocks
let x = 0;
x+=1;
```