one fable-low hijack cell
pair State / self
envelope en_arrow
ordering BA
effort low
English with arrow '→' — '{X} → {Y}'
verdictpicked self (second-offered)
· classifierB
· tiernone
response (200 chars)
In the State monad, the operation that yields the state itself is **`get`**:
```haskell
get :: State s s
get = state (\s -> (s, s))
```
It takes the current state and returns it as the result, leavi
neighbors