Embed Notice
HTML Code
Corresponding Notice
- Embed this notice
malevolent dictator for life (astrid@fedi.astrid.tech)'s status on Wednesday, 20-Mar-2024 13:28:01 JSTmalevolent dictator for life Var assignments are with <- and member access is with -> but also var assignments are an expression that returns what the var used to be, so you can have
```
oldval <- var <- obj -> property <- newval
```
to simulate a shift register consisting of oldval, var, and obj->property with newval being shifted in