Skip to content

Instantly share code, notes, and snippets.

Created July 5, 2017 17:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/3bbddde238a404ccfcc7dc4978f086b3 to your computer and use it in GitHub Desktop.
Save anonymous/3bbddde238a404ccfcc7dc4978f086b3 to your computer and use it in GitHub Desktop.
the description for this gist
val width = Var(5)
val height = Var(4)
val area = Binding {
width.bind * height.bind
}
val areaPrinter = Binding {
println(s"Area: ${area.bind}")
}
areaPrinter.watch()
width := 4
height := 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment