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

Implementing Functional Reactive Programming in...

oetzi
October 06, 2011

Implementing Functional Reactive Programming in Scala - Project Proposal

A presentation for my fourth year honours project proposal

oetzi

October 06, 2011
Tweet

More Decks by oetzi

Other Decks in Technology

Transcript

  1. “A multi-paradigm programming language designed to integrate features of object-

    oriented and functional programming...” Friday, 7 October 11
  2. Extensible = Implicit Methods implicit def int2String(val : Int) :

    String = val.toString Friday, 7 October 11
  3. Extensible = Traits trait SaysHello { val x = 5

    def sayHello { println(“Hello ” + x) } } Friday, 7 October 11