...rticle/16322/)
- [The story of three brothers that bankrupted their family and broke the global silver market](https://learnblockchain.cn/article/16274/)
[](https://learnblockchain.cn/article/1632...
...出局,质押者入局。
## Slots(槽位), Epochs(纪元), and the Random Party(随机派对) (RANDAO)
**每 12 秒**,随机选择一个验证者来提议一个新的交易区块。

以太坊的 B...
...绑定。
```rust
fn main() {
let a = 1;
// a = 2; // immutable and error
let mut b = 2;
b = 3; // mutable
}
```
通过 mut 关键字,可以声明可变的位置表达式,即可变绑定。
可变绑定可以正常修改和赋值。
从语义上来说
let 默认声...