Inspired by mirai, I'm experimenting with using `[]` as an alias for `cdo_execute()` to run the deferred execution in rcdo. This works well when doing just one operation.
Instead of
```
cdo_sub(forecast, obs) |>
cdo_execute()
```
You can do
```
cdo_sub(forecast, obs)[]
```
Which is much shorter.