JuliaPluto / PlutoSliderServer.jl

Web server to run just the `@bind` parts of a Pluto.jl notebook
https://computationalthinking.mit.edu/
The Unlicense
130 stars 17 forks source link

Warn when one bond defines another #138

Open fonsp opened 2 months ago

fonsp commented 2 months ago

This situation does not work well on PSS:

@bind x Slider(1:10)

@bind y Slider(y:10)

x + y

It might be nice to detect this and show a warning, instead of unexpected failures.