tilia-0.0.1.0: corpora/vendored/other/comment-after-the-let-keyword.hs
module Route.Cost where
leg :: Int -> Int
leg n =
let -- charged once, whatever the distance
base = 40
perStop = 7
in base + perStop * n
module Route.Cost where
leg :: Int -> Int
leg n =
let -- charged once, whatever the distance
base = 40
perStop = 7
in base + perStop * n