A friendly programming language from the future
Go to file
Paul Chiusano fae001df80 Fix #1640 and also fix unreported pattern parsing bug and add test for it
Issue was actually in the parser. A pattern like `Foo Bar a b c` was being parsed as `Foo (Bar a b c)`. The pattern parser just needed to be factored a bit differently to fix.
2020-07-29 10:15:06 -04:00
.github Update pull_request_template.md 2020-05-02 11:53:58 -04:00
contrib Move cabal.project to contrib/ 2020-02-04 08:27:16 -05:00
deps Bump to lts-15.13 2020-05-24 10:20:52 -04:00
docs fixed typo 2019-11-01 18:10:43 -07:00
editor-support Add doc blocks to vim syntax 2020-03-06 15:06:33 -05:00
parser-typechecker Fix #1640 and also fix unreported pattern parsing bug and add test for it 2020-07-29 10:15:06 -04:00
scripts Fix scripts/unisonloop.sh. 2019-10-01 20:36:01 +02:00
unison-core Merge pull request #1600 from unisonweb/mitchell/haddock-fixes 2020-06-07 09:22:57 -04:00
unison-src Fix #1640 and also fix unreported pattern parsing bug and add test for it 2020-07-29 10:15:06 -04:00
yaks/easytest Bump to lts-15.13 2020-05-24 10:20:52 -04:00
.gitignore ignore all .unison stuff in the build dir 2020-02-20 08:26:02 -05:00
.gitmodules Replace submodules with git extra-deps 2020-05-21 19:43:25 -04:00
.mergify.yml have mergify bot remote "ready-to-merge" label when merging 2020-02-04 11:39:28 -05:00
.travis.yml uncache ~/.stack/setup-exe-cache due to travis caching bug? 2020-06-18 14:16:48 -04:00
config added dev notes document, updated logging defaults 2016-10-06 13:11:38 -04:00
CONTRIBUTORS.markdown Fix #1131 2020-06-17 18:55:34 -04:00
development.markdown Move cabal.project to contrib/ 2020-02-04 08:27:16 -05:00
LICENSE This calls for a commit 2018-11-07 16:38:04 -05:00
README.md remove --recursive from README.md 2020-05-30 09:55:43 -04:00
stack.yaml update to lts-15.15 2020-06-02 22:14:59 -04:00

The Unison language

Build Status

Unison is a new programming language, currently under active development. It's a modern, statically-typed purely functional language, similar to Haskell, but with the ability to describe entire distributed systems with a single program. Here's an example of a distributed map-reduce implementation:

-- comments start with `--`
mapReduce loc fn ifEmpty reduce data = match split data with
  Empty          -> ifEmpty
  One a          -> fn a
  Two left right ->
    fl = at loc '(mapReduce loc fn ifEmpty reduce !left)
    fr = at loc '(mapReduce loc fn ifEmpty reduce !right)
    op !fl !fr

This function can be either simulated locally (possibly with faults injected for testing purposes), or run atop a distributed pool of compute.

If you'd like to learn more about the project, this Strange Loop talk is a good introduction. You can also follow along with project website or you can also say hello or lurk in the Slack chat.

We are currently alpha testing Unison. If you'd like to participate in alpha testing, you can go to the docs site to get started.

Building using Stack

If these instructions don't work for you or are incomplete, please file an issue.

The build uses Stack. If you don't already have it installed, follow the install instructions for your platform. (Hint: brew update && brew install stack)

$ git clone https://github.com/unisonweb/unison.git
$ cd unison
$ stack --version # we'll want to know this version if you run into trouble
$ stack build && stack exec tests && stack exec unison

See development.markdown for a list of build commands you'll likely use during development.