A friendly programming language from the future
Go to file
2021-08-24 11:33:27 -07:00
.github bump key to clear cache 2021-07-20 13:43:13 -04:00
codebase2 delete some unused package dependencies 2021-07-13 09:39:20 -07:00
contrib Remove commented option 2021-06-19 20:32:12 +02:00
deps Bump to lts-15.13 2020-05-24 10:20:52 -04:00
docs fix typo 2021-08-11 16:34:49 +02:00
editor-support Correct semantics of "fold" comment 2020-09-20 16:45:17 +01:00
parser-typechecker fixes tests and transcripts 2021-08-24 11:33:27 -07:00
scripts Fix scripts/unisonloop.sh. 2019-10-01 20:36:01 +02:00
unison-core Only elide covariant variables in removePureEffects 2021-08-19 15:49:52 -04:00
unison-src fixes tests and transcripts 2021-08-24 11:33:27 -07:00
yaks/easytest add callstack to some easytest functions 2021-08-02 14:56:24 -04:00
.gitignore Ignore dist-newstyle 2021-06-18 21:28:18 +02:00
.mailmap Update Mat Ess 2021-06-07 14:26:39 -04:00
.mergify.yml Update mergify.yml for new build matrix 2021-05-28 09:19:40 -05:00
config added dev notes document, updated logging defaults 2016-10-06 13:11:38 -04:00
CONTRIBUTORS.markdown Re-use work from #1426, thanks @shmish111 2021-07-31 13:33:06 -06:00
CREDITS.md Create CREDITS.md 2020-09-29 13:37:01 -04:00
dev-ui-install.sh Codebase server default ui path is relative to the executable now 2021-05-28 14:45:10 -05:00
development.markdown Update cabal instructions 2021-06-18 23:19:00 +02:00
hie.yaml cleanup hie.yaml 2021-04-28 08:10:14 -06:00
LICENSE This calls for a commit 2018-11-07 16:38:04 -05:00
README.md Update README.md 2021-07-06 15:04:42 -07:00
sql this symlink for haskell-language-server's sake 2021-02-01 21:13:58 -05:00
stack.yaml Use optparse-applicative for all argument parsing 2021-07-31 13:34:44 -06:00
weeder.dhall pull some weeds 2021-05-06 23:19:11 -06: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

To run a local codebase-ui while building from source, you can use the /dev-ui-install.sh script. It will download the latest release of the codebase-ui and put it in the expected location for the unison executable created by stack build. When you start unison, you'll see a url where the codebase-ui is running.

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 must 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.