Reactive-banana/Examples

From HaskellWiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Examples for the reactive-banana library.

Core Examples

SlotMachine.hs
Mainly demonstrates how to set up an event network with your own event loop. Also demonstrates the FRP functionality.
RunPause.hs
Demonstrates how to set up an event network with your own event loop and how to pause or resume it.

GUI Examples

Counter.hs
A simple counter that can be manipulated with two buttons "Up" or "Down".

Reactive-banana-Counter.png

CurrencyConverter.hs
Simple currency converter. Reads a value from a text entry widget and multiplies it with a constant. (Does wxHaskell offer a way to make this real-time?)

Reactive-banana-CurrencyConverter.png

TwoCounters.hs
Two simple counters. There is only one pair of buttons "Up" or "Down", the button "Switch Counters" allows you to specify which counter should be affected.

Reactive-banana-TwoCounters.png

Asteroids.hs
Port of the wxAsteroids example.

Reactive-banana-wxAsteroids.png

Wave.hs
A wave-like pattern. Not the most beautiful code, but it demonstrates that you can generated timed events.

Reactive-banana-Wave.png