Having recently started programming in Ruby, I noticed one small language feature that is really giving me a hard time — variables that start with a capital letter are automatically constants.
While I understand that this is by design, and does really help in most cases, it becomes a problem once one starts writing algorithms. By that I mean code that requires efficient and easy distinction between variables — say, n and N.
Here is a very simplistic example (I'm aware it's not a fully valid/rubyesque code, but I hope it illustrates my point):
def average(array)
N = 0
array.each { |n| N += n }
N/array.length.to_f
end
Another example is subscripts — say, while doing a calculation in a physics problem, having F_friction and F_weight would be helpful but impossible in Ruby.
So, the question is: is there an accepted way of dealing with these variable names?
ruby -W0) and not be bothered anymore by constants reassignement, but this is evil: I am rushing for some holy water just for suggesting that. – Eureka Sep 23 '12 at 20:49array.inject(:+) / array.length.to_f. – Andrew Marshall Sep 23 '12 at 21:10