2016-06-14 11:49:58 -04:00
|
|
|
# Blocks language
|
|
|
|
|
2016-11-29 00:04:21 -08:00
|
|
|
### @description Language constructs for the Block editor.
|
2016-08-17 09:44:15 -07:00
|
|
|
|
2016-06-14 17:20:45 -04:00
|
|
|
```namespaces
|
2016-06-14 11:49:58 -04:00
|
|
|
for (let i = 0;i<5;++i) {}
|
|
|
|
if (true){}
|
|
|
|
let x = 0;
|
|
|
|
Math.random(5);
|
2016-08-10 13:10:40 -07:00
|
|
|
```
|
|
|
|
|
|
|
|
## See Also
|
|
|
|
|
2016-12-19 14:09:35 -08:00
|
|
|
[logic](/blocks/logic), [loops](/blocks/loops), [math](/blocks/math), [variables](/blocks/variables), [on-start](/blocks/on-start)
|