Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 1.44 KB

README.md

File metadata and controls

45 lines (28 loc) · 1.44 KB

LightOO

A lightweight library for Object Oriented programming (OOP) in Haskell.

The library is inspired by the "Mutable Objects, with tail-polymorphism" approach as described in the "Haskell's overlooked object system" paper and extends it with:

It was created as part of my master thesis "wxHaskell for the web, 2012" where it served as a tool to facilitate the implementation of an object-oriented GUI toolkit in Haskell.

Please look inside the src/Examples directory for additional examples.

Usage GHC

make ghci 

or

make ghci MAIN=src/Examples/{One of the examples}

Usage UHC

Make sure the UHC environment variable points to your local UHC installation.

make 

or

make MAIN=src/Examples/{One of the examples}

Related