Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rvantonder/reason
https://github.com/rvantonder/reason
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/rvantonder/reason
- Owner: rvantonder
- License: other
- Created: 2018-01-03T00:28:19.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-03T18:28:56.000Z (about 7 years ago)
- Last Synced: 2024-12-09T05:36:35.793Z (27 days ago)
- Language: OCaml
- Size: 4.08 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Reason: Build Systems Rapidly
=========================================- Approachable syntax.
- Powerful, automatic source code formatting.
- Adopt Incrementally with `JavaScript/C` interop.
- Ahead of time compilation to assembly - without a language level VM.
- Rapidly develop and share projects.Install Stable
----------```sh
# On OSX, install opam via Homebrew:
brew update
brew install opam
# On Linux, see here (you will need opam >= 1.2.2): http://opam.ocaml.org/doc/Install.htmlopam init
# Add this to your ~/.bashrc (or ~/.zshrc):
# eval `opam config env`opam switch 4.02.3
eval `opam config env`
opam update
opam pin add -y merlin 'https://github.com/the-lambda-church/merlin.git#reason-0.0.1'
opam pin add -y merlin_extend 'https://github.com/let-def/merlin-extend.git#reason-0.0.1'
opam pin add -y reason 'https://github.com/facebook/reason.git#0.0.6'```
Test Installation
----------Test the [installation](#install-stable) by compiling the following program:
```sh
echo print_string \"Hello world\" > Hello.rerebuild Hello.native # Automatically generates Hello.native from Hello.re
./Hello.native
```
Get Started Now
---------------
Checkout the [docs](http://facebook.github.io/reason) which guide you through the basic syntax and toolchain features.Contribute back to that documentation in the [documentation branch](https://github.com/facebook/reason/tree/gh-pages).
License
-------New content is licensed under the MIT license, works that are forked from other
projects are under their original licenses.
[MIT license](LICENSE.txt)Editor plugins (which have also been forked) in the `editorSupport/` directory
include their own licenses.