this copies the variable and modifies the copy, which is different than

```rust
unsafe { VARIABLE_1.add_assign(10) }
```