A friendly programming language from the future
Go to file
2021-04-29 12:32:58 -04:00
.github Don't run each test suite twice in CI 2021-04-15 20:44:18 -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 Typo 2021-04-29 12:32:58 -04:00
scripts Fix scripts/unisonloop.sh. 2019-10-01 20:36:01 +02:00
unison-core Merge pull request #1887 from unisonweb/topic/docs-command-fix 2021-04-26 11:19:33 -05:00
unison-src ⅄ trunk → delete-old-runtime 2021-04-27 09:39:55 -04:00
yaks/easytest MonadCatch and MonadThrow instances for Test 2021-04-07 14:14:49 -06:00
.gitignore lots of IO tests working 2021-01-13 14:20:57 -08:00
.mergify.yml Update .mergify.yml 2021-04-08 02:32:18 -04:00
config added dev notes document, updated logging defaults 2016-10-06 13:11:38 -04:00
CONTRIBUTORS.markdown Allow redundant commas in lists 2021-03-24 19:35:12 +01:00
CREDITS.md Create CREDITS.md 2020-09-29 13:37:01 -04:00
development.markdown Update development md as well 2021-03-21 12:17:10 -04: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
README.md Update README with ucm env var instructions 2021-03-18 15:47:04 -04:00
stack.yaml Add ui and api sub-APIs 2021-04-28 23:32:36 -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)
    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.

Codebase Server

When ucm starts it starts a Codebase web server that is used by the Codebase UI. It selects a random port and a unique token that most be used when starting the UI to correctly connect to the server.

The port, host and token can all be configured by providing environment variables when starting ucm: UCM_PORT, UCM_HOST, and UCM_TOKEN.