Last active
May 4, 2022 09:56
-
-
Save stefan-wullems/acb5881efb9744b1eefc3d88d443d0e3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Quantity unit = | |
Quantity Int | |
-- SUPPORTED UNITS --------- | |
type Newtons = Newtons | |
type Meters = Meters | |
type Amperes = Amperes | |
-- COMBINE ----------------- | |
add : Quantity unit -> Quantity unit -> Quantity unit | |
multiply : Quantity unit -> Quantity unit -> Quantity unit | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment