|
|
|
|
|
by tcopeland
3005 days ago
|
|
In the "things learned from Ruby" section: Focus on strong object oriented programming
What I've learned from Ruby is to favor functional programming concepts - minimize side effects, isolate state mutation, etc. Ruby is definitely OO, but when my Ruby code is more functional it's less buggy, easier to understand and move around, and generally less convoluted. |
|