A friendly programming language from the future
Go to file
Arya Irani 87e58af9c5 switch to Windows code page 65001 in exe:unison and exe:tests
I think it's only needed in these two spots, as the other
executables just shell out to `stack exec unison`.

I'm not actually clear on how this interacts with (or could be replaced by `hSetEncoding`, which we do have sprinkled around already, but not sufficiently to let Windows builds work.

If there's a cleaner solution, I'd like to use it. i.e. am I papering over a more correct multi-platform fix by using the Windows-only System.IO.Codepage?
2022-02-17 15:55:30 -07:00
.github Fix build harder 2022-02-11 11:03:18 -08:00
codebase2 Don't sync ALL test watches. (#2904) 2022-02-15 11:45:21 -06:00
contrib Adds unison-cli package to cabal.project 2021-11-07 20:23:10 -08:00
deps Bump to lts-15.13 2020-05-24 10:20:52 -04:00
docs Merge branch 'trunk' into topic/rehash-codebase-merge-trunk 2021-12-14 12:40:18 -06:00
editor-support vim completion: handle leading { 2022-01-27 15:17:13 -08:00
lib Merge pull request #2814 from unisonweb/cp/rewrite-slurping 2022-02-17 16:48:40 -06:00
parser-typechecker Merge pull request #2814 from unisonweb/cp/rewrite-slurping 2022-02-17 16:48:40 -06:00
scripts add --test --no-run-tests 2021-12-17 15:10:06 -05:00
unison-cli switch to Windows code page 65001 in exe:unison and exe:tests 2022-02-17 15:55:30 -07:00
unison-core Merge remote-tracking branch 'origin/trunk' into cp/rewrite-slurping 2022-02-17 10:14:45 -06:00
unison-src Merge pull request #2814 from unisonweb/cp/rewrite-slurping 2022-02-17 16:48:40 -06:00
yaks/easytest Add ORMOLU_DISABLE to every file. 2021-11-23 12:10:58 -06:00
.gitignore PR feedback 2021-11-12 12:49:09 -06: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 Don't say what's been contributed. 2022-02-14 06:25:03 -05:00
CREDITS.md Create CREDITS.md 2020-09-29 13:37:01 -04:00
dev-ui-install.sh Match UI release zip file of unisonLocal.zip 2021-11-29 10:30:22 -05:00
development.markdown add integration-tests note 2021-10-24 08:20:51 +00:00
hie.yaml Merge pull request #2916 from unisonweb/22-02-17-integration-tests-hie 2022-02-17 15:48:03 -07:00
LICENSE Update and standardize licenses 2021-10-12 13:47:08 -06: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 fork and patch Shellmet 2022-02-17 00:30:06 -07: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.