You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
428 B
Ruby

# Height in meters
towers = [
{ :name => "Berliner Fernsehturm", :height => 368.0 },
{ :name => "Canton Tower", :height => 600.0 },
{ :name => "Eiffel Tower", :height => 324.0 },
{ :name => "Tokyo Tower", :height => 332.6 },
{ :name => "Stratosphere Tower", :height => 350.2 }
]
factor = 100/2.54 # Converts centimeters to inches
conversion = lambda do |x|
# Your code goes here
end
# Your code goes here