An open API service indexing awesome lists of open source software.

https://github.com/kanghyojun/lisperrypy


https://github.com/kanghyojun/lisperrypy

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

lisperrypy
---------
[![Build Status](https://travis-ci.org/admire93/lisperrypy.svg?branch=master)](https://travis-ci.org/admire93/lisperrypy)

Mixing python and lisp!

Python version
===============

lisperrypy tested on

- 2.7
- 3.4

Usage
========

```python
from lisperrypy import lisperrypy

@lisperrypy
def lisp_sum(x, y)
return '(+ %s %s)' % (x, y)

assert 3 == lisp_sum(1, 2)
```