Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Implementing Functional Reactive Programming in...

oetzi
February 21, 2012

Implementing Functional Reactive Programming in Scala - Progress Presentation

A presentation showing the capabilities of my current FRP framework

oetzi

February 21, 2012
Tweet

More Decks by oetzi

Other Decks in Programming

Transcript

  1. val anim = song.volume.map1(width) { (v, w) => math.min(v *

    (w / 50F), w) } val bouncer = Block(anim, height - 70, Color.green)
  2. class Dangerous extends Breakable { dangerous { () => break_everything()

    } } val danger = new Dangerous() val err : Event[Exception] = danger.errors