I am working with Ruby scripting language. I have a snippet here. Just want to know what is happening inside that with in the loop. Here is my code
#!/usr/bin/ruby
presidents = ["Ford", "Carter", "Reagan", "Bush1", "Clinton", "Bush2"]
for ss in 0...presidents.length
print ss, ": ", presidents[presidents.length - ss - 1], "\n";
end
I know that it is to print the array in reverse order, but my intention is to know what is happening in
"presidents[presidents.length - ss - 1]"
Please help me understanding this. I am really confused with this.