In Ruby, methods with side effects or methods that change the object passed as parameters have "!" as a postfix.
For example:
"SomeString".gsub!(/S/, "s")
would be changing the String object, while
"SomeString".gsub(/S/, "s")
would work on a copy of the String object, and would not change the state of any objects outside of the method.
I like this convention, and I'd like to use it when programming in other languages, too.
My question: