pxt-calliope/docs/reference/variables.md

22 lines
250 B
Markdown
Raw Normal View History

2016-04-06 08:11:48 +02:00
## 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;
```