Difference between revisions of "Yampa"

From HaskellWiki
Jump to navigation Jump to search
(→‎External Links: Added a link to "Demonstrating a Time Leak in Arrowized FRP")
(forks)
Line 19: Line 19:
 
* [http://lambdor.net Blog about Yampa] - introduction tutorials and diagrams
 
* [http://lambdor.net Blog about Yampa] - introduction tutorials and diagrams
 
* [http://blog.edwardamsden.com/2011/03/demonstrating-time-leak-in-arrowized.html Demonstrating a Time Leak in Arrowized FRP]
 
* [http://blog.edwardamsden.com/2011/03/demonstrating-time-leak-in-arrowized.html Demonstrating a Time Leak in Arrowized FRP]
  +
*
  +
  +
== Known forks ==
  +
  +
* [https://github.com/eamsden/Animas Animas]
  +
** code cleanup
  +
** [http://blog.edwardamsden.com/
  +
* [https://frvr.svn.sourceforge.net/svnroot/frvr/AFRP/trunk FRVR]
  +
** restructuring of modules
  +
** [http://imve.informatik.uni-hamburg.de/projects/DIVE DIVE project]
  +
** [http://imve.informatik.uni-hamburg.de/files/71-Blom-Diss-online.pdf Kristopher J. Blom - Dynamic, Interactive Virtual Environments] section 8.3

Revision as of 22:29, 24 June 2011


Yampa is a domain-specific embedded language for the programming of hybrid systems using the concepts of Functional Reactive Programming (FRP). Yampa is structured using Arrows, which greatly reduce the chance of introducing space- and time-leaks into reactive, time-varying systems.

Yampa was originally developed by the Yale Haskell Group.

Downloads

  • YampaSynth - is a software synthesizer implemented in Haskell using Yampa. It contains a framework of sound generating and sound shaping modules (e.g. oscillator, amplifier, mixer, envelope generator, filter, etc.) and example applications.

External Links

Known forks