I'd like to get a substring from a string from position N to the end of the string.
What's the way to do it in Ruby?
Just slice the string like:
string[N..-1]