Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/syocy/a-tour-of-go-in-haskell

Write "Concurrency" section of "A Tour of Go" in Haskell
https://github.com/syocy/a-tour-of-go-in-haskell

concurrency go haskell

Last synced: about 2 months ago
JSON representation

Write "Concurrency" section of "A Tour of Go" in Haskell

Awesome Lists containing this project

README

        

[![Travis](https://travis-ci.org/syocy/a-tour-of-go-in-haskell.svg?branch=master)](https://travis-ci.org/syocy/a-tour-of-go-in-haskell)

[Here](https://a-tour-of-go-in-haskell.syocy.net) is the site generated from this repository.

# A Tour of Go in Haskell

[A Tour of Go](https://tour.golang.org/) is a famous tutorial of the Go programming language.

This repository attempts to write [Concurrency](https://tour.golang.org/concurrency/1) section of A Tour of Go in the Haskell progamming language.

Haskell has *lightweight thread* feature as in Go.

So it should be interesting for us to compare concurrent program in Haskell and Go :)