Please help
I want to create a multiplication table in ruby.
I want a 2 dimentional array
and the do something like that
2darray.new
for row in 1…10
for col in 1…10
2darray[row,col]=row*col
end
end
How do I do it in Ruby
···
–
Jacek Podkanski