new rule: replace += on List/Map types with <<
Don't do this:
myList += '5'
Instead do this:
myList << 5
It's a performance problem.
Log in to post a comment.