A static compiled language on Python with type safety, efficiency and syntax sugars.
Project description
[![Build Status](https://travis-ci.org/thautwarm/reley.svg?branch=master)](https://travis-ci.org/thautwarm/reley)
See examples at `haskell_test/*.hs`.
Currently you can install reley compiler with `python setup.py install`.
Usage
============
- Compile:
```
> reley cc <filename>.hs -o <out>.pyc
> python <out>.pyc
```
- Run Reley
```
> reley run <filename>.hs
```
- Import reley programs in Python
If you have a reley source file `haskell_test/sum_n.hs`:
```haskell
module
m_sum, (==) -- export `m_sum` and `(==)`
where
import operator (add, eq)
import functools (reduce)
import toolz (curry)
import reley.prelude ((+))
infix 5 (==)
infix 0 ($)
(==) = curry eq
($) a b = a b
(+) = curry add
m_sum lst = if lst == [] then 0
else destruct lst
where
destruct (a, b) = a + m_sum(b)
main () =
print $ m_sum [1, 2, 3, 4, 5, 6]
```
Then you can import it in Python
```python
import reley.impl.pycompat
from haskell_test.sum_n import m_sum
lst = (5, (2, (1, ())))
print(m_sum(lst))
```
About Reley
====================
It's in an early stage with many shortages.
Most of the crucial Haskell features are missing.
See examples at `haskell_test/*.hs`.
Currently you can install reley compiler with `python setup.py install`.
Usage
============
- Compile:
```
> reley cc <filename>.hs -o <out>.pyc
> python <out>.pyc
```
- Run Reley
```
> reley run <filename>.hs
```
- Import reley programs in Python
If you have a reley source file `haskell_test/sum_n.hs`:
```haskell
module
m_sum, (==) -- export `m_sum` and `(==)`
where
import operator (add, eq)
import functools (reduce)
import toolz (curry)
import reley.prelude ((+))
infix 5 (==)
infix 0 ($)
(==) = curry eq
($) a b = a b
(+) = curry add
m_sum lst = if lst == [] then 0
else destruct lst
where
destruct (a, b) = a + m_sum(b)
main () =
print $ m_sum [1, 2, 3, 4, 5, 6]
```
Then you can import it in Python
```python
import reley.impl.pycompat
from haskell_test.sum_n import m_sum
lst = (5, (2, (1, ())))
print(m_sum(lst))
```
About Reley
====================
It's in an early stage with many shortages.
Most of the crucial Haskell features are missing.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
reley-0.1.18-py3-none-any.whl
(16.3 kB
view details)
File details
Details for the file reley-0.1.18-py3-none-any.whl
.
File metadata
- Download URL: reley-0.1.18-py3-none-any.whl
- Upload date:
- Size: 16.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90b8a375f62b259c2ff903cdb968588eabf453d6ae400881d84152805734b0df |
|
MD5 | cdd1f7af0ad2d46aca9241ced858eaec |
|
BLAKE2b-256 | fded5dc58a035f97442179ce0ee1f42b31df009ae91f079856c92a60a5954b1b |