units-2.3: Tests/Compile/CGS.hs
{-# LANGUAGE DataKinds, TypeOperators #-}
module Tests.Compile.CGS where
import Data.Metrology
import Data.Metrology.SI
import qualified Data.Dimensions.SI as D
type CGS = MkLCSU '[ (D.Length, Centi :@ Meter)
, (D.Mass, Gram)
, (D.Time, Second) ]
type CGSLength = MkQu_DLN D.Length CGS Double
type CGSMass = MkQu_DLN D.Mass CGS Double
type CGSTime = MkQu_DLN D.Time CGS Double