Created
May 3, 2015 21:16
-
-
Save bjartwolf/e171588f84a2a86c1f4b to your computer and use it in GitHub Desktop.
three.fs
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 norTimestamp = ZonedDateTime | |
type utcTimestamp = Instant | |
type meterReading= { Val: decimal } // Contains more stuff, shortend for clarity | |
type utcReading = utcTimestamp * meterReading | |
type norReading = norTimestamp * meterReading |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment