Announcing a new package: kinda-ferpy. Here's a 
[write-up](https://sagegerard.com/kinda-ferpy-intro.html). It implements the 
spreadsheet metaphor in an expressive way, based on MaiaVictor's excellent 
[PureState library](https://github.com/MaiaVictor/PureState). It's not a 
complete functional reactive programming interface, but it does conveniently 
express Racket values as dependent computations.

(require kinda-ferpy)

(define x (stateful-cell 1))
(define y (stateful-cell 1))
(define sum (stateful-cell (λ _ (+ (x) (y)))))

(displayln (sum)) ; 2
(y 8)
(displayln (sum)) ; 9

~slg

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/QO0uwg7I2YeD0nczzY77m3RVr6TceC-IY1YunNNYqiq55n_bjHpKh-Rnf5xo1zGgLa44giG3SmxwhenvbHt84u4J4Rm6M2whybBOpWxuCtY%3D%40sagegerard.com.

Reply via email to