A friendly programming language from the future
Go to file
2021-04-25 20:57:20 -04:00
.github Use stack to install GHC in CI 2021-03-16 15:10:49 -04:00
codebase1/codebase Merge remote-tracking branch 'origin/trunk' into wip/codebase2 2021-03-10 13:57:04 -05:00
codebase2 add more Queries logging options 2021-04-21 13:38:44 -06:00
codebase2-tests making an absolute mess in git 2021-04-06 12:50:35 -06:00
codebase-convert-1to2 term1to2 was encoding Term.Request as Constructor 2021-02-12 15:27:37 -05: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 indent call to launch 2021-04-25 20:57:20 -04:00
scripts Fix scripts/unisonloop.sh. 2019-10-01 20:36:01 +02:00
unison-core ⅄ trunk → codebase2-merge-trunk 2021-04-25 20:46:03 -04:00
unison-src ⅄ trunk → codebase2-merge-trunk 2021-04-25 20:46:03 -04:00
yaks/easytest wip 2021-04-07 14:33:12 -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
defaults.yaml making an absolute mess in git 2021-04-06 12:50:35 -06:00
development.markdown Update development md as well 2021-03-21 12:17:10 -04:00
hie.yaml simplify hie.yaml 2021-03-31 22:48:47 -07:00
LICENSE This calls for a commit 2018-11-07 16:38:04 -05:00
questions.md move setNamespaceRoot call out of syncToDir and into git push 2021-04-15 16:27:09 -06:00
README.md Update README with ucm env var instructions 2021-03-18 15:47:04 -04:00
sql this symlink for haskell-language-server's sake 2021-02-01 21:13:58 -05:00
stack.yaml ⅄ trunk → codebase2-merge-trunk 2021-04-25 20:46:03 -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.