fjord/main.rb

5 lines
135 B
Ruby
Raw Normal View History

2024-03-21 06:40:03 +09:00
UNITS = { m: 1.0, ft: 3.28, in: 39.37 }
def convert_length(length, from: :m, to: :m)
(length / UNITS[from] * UNITS[to]).round(2)
2024-03-16 22:40:05 +09:00
end