Created
June 21, 2014 23:47
-
-
Save hughfdjackson/e8daf9e6de3edae2d78f 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 State = { prev: Int, curr: Int } | |
| tick = every second | |
| updateState timestamp state = { state | prev <- state.curr, curr <- timestamp } | |
| main = lift asText <| foldp updateState { prev = 0, curr = 0 } tick |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment