Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/syocy/a-tour-of-go-in-haskell
- Owner: syocy
- License: bsd-3-clause
- Created: 2017-08-25T14:23:45.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-15T10:31:20.000Z (about 6 years ago)
- Last Synced: 2024-08-01T22:46:47.606Z (5 months ago)
- Topics: concurrency, go, haskell
- Language: Haskell
- Homepage:
- Size: 870 KB
- Stars: 130
- Watchers: 13
- Forks: 10
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 :)