A friendly programming language from the future
Go to file
2024-06-21 13:52:58 -04:00
.github updating tj-actions/changed-files to v44 2024-06-18 13:13:20 -04:00
codebase2 [create-pull-request] automated change 2024-06-04 18:34:00 +00:00
contrib Update cabal.project 2024-03-15 06:10:57 -04:00
deps Bump to lts-15.13 2020-05-24 10:20:52 -04:00
docs No longer need special instructions for Mac Silicon. 2024-06-12 21:54:43 +01:00
editor-support Remove hacky vim auto-completion 2023-04-24 09:02:02 -04:00
lib Merge! 2024-05-30 15:56:27 -07:00
nix Run Cabal test-suites as Nix checks 2024-06-01 13:03:03 -06:00
parser-typechecker Remove a very lawless type class 2024-06-21 08:00:51 -04:00
scheme-libs/racket Fix jit zlib-deflate 2024-05-16 16:46:37 -04:00
scripts commit-ish doesn't include tags today 2024-05-15 18:07:42 -04:00
unison-cli Remove a very lawless type class 2024-06-21 08:00:51 -04:00
unison-cli-integration Cli integration transcript output 2024-04-17 14:28:21 -04:00
unison-cli-main move cli-integration tests to their own package 2024-03-25 05:20:13 -06:00
unison-core Remove an even more lawless type class 2024-06-21 08:00:58 -04:00
unison-hashing-v2 Don't expose Branch0 internals, (and add add lens utils to prelude) 2024-05-30 15:21:47 -07:00
unison-merge properly handle deleted constructors in merge 2024-06-20 14:31:40 -04:00
unison-share-api Refine Path-prefixing operations 2024-06-06 23:53:00 -05:00
unison-share-projects-api Add missing api instances 2024-05-16 14:55:35 -07:00
unison-src properly handle deleted constructors in merge 2024-06-20 14:31:40 -04:00
unison-syntax bugfix: don't emit virtual semis inside { or [ 2024-06-21 13:52:58 -04:00
yaks/easytest Ormolu-ify the codebase and update development.markdown docs 2023-02-13 13:03:08 -06:00
.editorconfig Add an EditorConfig config 2024-05-28 17:17:22 -06:00
.gitattributes support windows in ci (#2913) 2022-02-28 20:05:02 -06:00
.gitignore Ignore the Nix build result symlink 2024-05-28 10:07:10 -06:00
.mailmap Update Mat Ess 2021-06-07 14:26:39 -04:00
.mergify.yml Update .mergify.yml 2024-06-13 16:53:30 -04:00
config added dev notes document, updated logging defaults 2016-10-06 13:11:38 -04:00
CONTRIBUTORS.markdown add neduard to CONTRIBUTORS 2024-06-13 20:39:34 +01:00
CREDITS.md whitespace 2024-04-05 14:39:54 -06:00
dev-ui-install.sh Use unison-local-ui over codebase-ui 2022-07-05 16:57:03 -04:00
development.markdown Prefix the flattened flake outputs 2024-05-28 10:07:10 -06:00
Dockerfile use relative paths in Dockerfile 2024-01-22 15:25:56 -08:00
flake.lock Remove flake-compat input 2024-06-01 13:03:34 -06:00
flake.nix Merge pull request #5036 from sellout/add-nix-checks 2024-06-03 18:06:38 -04:00
hie.yaml ⅄ trunk → topic/merge4 2024-04-08 10:03:38 -04:00
LICENSE Update copyright 2024-02-25 12:20:25 -05:00
README.md No longer need special instructions for Mac Silicon. 2024-06-12 21:54:43 +01:00
stack.yaml ⅄ trunk → topic/merge4 2024-05-13 10:36:03 -04:00
stack.yaml.lock add Network.UDP package 2024-03-03 11:41:34 -06:00
weeder.dhall pull some weeds 2021-05-06 23:19:11 -06:00

The Unison language

CI Status Pre-Release Status

Overview

Unison is a modern, statically-typed purely functional language with the ability to describe entire distributed systems using 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 = forkAt loc '(mapReduce loc fn ifEmpty reduce !left)
    fr = forkAt loc '(mapReduce loc fn ifEmpty reduce !right)
    reduce (await fl) (await fr)

This function can be either simulated locally (possibly with faults injected for testing purposes), or run atop a distributed pool of compute. See this article for more in-depth coverage of how to build distributed computing libraries like this.

Other resources:

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 --fast --test && stack exec unison

To run the Unison Local UI while building from source, you can use the /dev-ui-install.sh script. It will download the latest release of unison-local-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 Unison Local UI is running.

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

Language Server Protocol (LSP)

View Language Server setup instructions here.

Codebase Server

When ucm starts it starts a Codebase web server that is used by the Unison Local 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.

Configuration

See the documentation for configuration here