Hacker News new | ask | show | jobs
by sparkie 4435 days ago
We probably wanna add to it to make it useful

    {-# LANGUAGE GeneralizedNewtypeDeriving #-}
   
    newtype Kilogram = Kilogram Double deriving (Show, Eq, Ord, Num, Real, Fractional, Floating, ...)
And remind ourselves that Haskell is really quite expressive.
1 comments

Though unfortunately can't handle (mass * accel :: Newton) without swapping out the Prelude.