Skip to content

Latest commit

 

History

History
17 lines (8 loc) · 721 Bytes

File metadata and controls

17 lines (8 loc) · 721 Bytes

Three Haskell 'Game of Life' Implementations

This repository contains the source code for three simple Game of Life implementation in Haskell. The purpose of this project was to learn more about writing fast Haskell code working with arrays and displaying the results using OpenGL.

First version using Data.Array and GLUT

gol

Second version using Data.Vector and GLFW-b

gol

Third parallelized version (Async, Repa, LLVM backend, C++ & pthread reference)

gol