A friendly programming language from the future
Go to file
Paul Chiusano 8813da9369 DisplayValues works with unannotated terms now
This is prep for allowing the cache used by display to work with whole terms rather than just references
2021-03-25 16:27:41 -05:00
.github Update ci.yaml 2021-03-14 22:02:37 -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 Adjust adding-builtins documentation 2020-09-25 16:45:46 -04:00
editor-support Correct semantics of "fold" comment 2020-09-20 16:45:17 +01:00
parser-typechecker DisplayValues works with unannotated terms now 2021-03-25 16:27:41 -05:00
scripts Fix scripts/unisonloop.sh. 2019-10-01 20:36:01 +02:00
unison-core DisplayValues works with unannotated terms now 2021-03-25 16:27:41 -05:00
unison-src minor update to run transcript 2021-03-11 10:44:23 -05:00
yaks/easytest Remove now redundant extensions 2020-07-29 20:30:03 -04:00
.gitignore lots of IO tests working 2021-01-13 14:20:57 -08:00
.mergify.yml I think this is the correct mergify change 2020-11-24 16:58:06 -05:00
config added dev notes document, updated logging defaults 2016-10-06 13:11:38 -04:00
CONTRIBUTORS.markdown add consistent list naming 2021-03-03 19:19:47 +00:00
CREDITS.md Create CREDITS.md 2020-09-29 13:37:01 -04:00
development.markdown Move cabal.project to contrib/ 2020-02-04 08:27:16 -05:00
doc2.u Some tweaks to Doc representation 2021-03-16 09:42:23 -05:00
hie.yaml Add hie.yaml 2020-07-25 20:08:33 -04:00
LICENSE This calls for a commit 2018-11-07 16:38:04 -05:00
pretty.u WIP on pure Unison doc rendering 2021-03-04 13:42:12 -06:00
README.md Fix typo in README 2020-11-24 09:46:04 +01:00
remote.u Filled in a bunch of rendering function 2021-03-08 16:10:22 -06:00
scratch2.u Noncompiling WIP 2021-03-15 15:34:19 -05:00
stack.yaml Merge branch 'trunk' of github.com:unisonweb/unison into topic/codebaseserver-openapi 2021-02-25 23:49:07 -05: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)
    reduce !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.