• This repository has been archived on 28/Mar/2023
  • Stars
    star
    112
  • Rank 301,443 (Top 7 %)
  • Language
    F#
  • License
    MIT License
  • Created almost 6 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

[wip] a programming environment for collaboration

Purr

Join the chat at https://gitter.im/origamitower/purr

NOTE: this project is in early stages of design and development. If you want to contribute, you should get familiar with the design process. Otherwise, this is the current state of the language.

A woman sitting cross-legged, using a computer. A beige lays on her right, and a white cat on her left.

Purr is a safe, multi-paradigm, and practical programming language targeting JavaScript. It’s based on a simple call-by-value calculus with one-shot delimited continuations, algebraic effect handlers, gradual typing and higher-order contracts, and a generalised form of pattern matching.

It supports functional, imperative, and object-oriented programming out-of-the-box. Other paradigms can be implemented as little embedded languages.

It uses runtime verification to enforce safety, but optimises away dynamic checks where the compiler can statically prove that a violation of the contract at runtime is impossible.

It does not add any feature that does not interact cleanly and modularly with JavaScript. Actual JavaScript code is isolated in FFIs to maintain safety, but runtime values still use the same intrinsics.

It supports compiler plugins, inline DSLs, and plugabble literals. Macros are plain AST-transforming functions that must be compiled prior to execution.

Getting this to work

You'll need to install .NET core 2.1+ and Node 10+.

Clone this repository:

$ git clone [email protected]:origamitower/purr.git

Install the tools (from the project's root):

$ cd purr
$ npm install

Install the compiler dependencies (from the compiler's root):

$ cd purr/projects/compiler
$ npm install
$ dotnet restore src
$ dotnet restore test

To build the compiler, run make build.

To run the tests, run make test.

If you're implementing a new feature, it might be useful to run the tests in "watch mode" (the project is recompiled and tests are run every time you change a source file). To do this, run make test-watch-build in one terminal, and make test-watch-run in another terminal.

Licence

Purr is (c) Quildreen Motta, and released under MIT.