I've been trying to learn functional reactive programming with GUIs in F#. From my understanding this pattern allows for uni directional data flow by updating a global State object which in turn update respective UI components. I've found posts like this one: http://steellworks.blogspot.de/2014/03/tutorial-functional-reactive.html which goes into how to subscribe to Observables and when an input changes, but I was trying to figure out how to keep an immutable global state which would update all necessary components. I'm trying to implement this in Eto.Forms since I want it to be cross-platform compatible I'm not sure if FRP is even the pattern that I'm looking for, or if i'm looking in the completely wrong direction.
Basically, my question is: how would I go about implementing an Elm like FRP pattern in F#