1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-18 21:56:57 +02:00
CodeWars/8kyu/keep_hydrated/solution.hs

5 lines
76 B
Haskell
Raw Normal View History

module Litres where
litres :: Double -> Integer
litres d = floor (d * 0.5)