5 ms·
In Ruby some people achieve this by wrapping actions in their own class, which does the trick if the classes are kept independent from each other (no shared sta
by jbbarth 11y ago
In Ruby some people achieve this by wrapping actions in their own class, which does the trick if the classes are kept independent from each other (no shared state, except global vars, which nobody uses in the ruby world).
- enqk 11y agoI should have been clearer. I meant isolated scope within a function.