https://github.com/kanghyojun/lisperrypy
https://github.com/kanghyojun/lisperrypy
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/kanghyojun/lisperrypy
- Owner: kanghyojun
- Created: 2014-05-03T14:48:53.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-10-08T19:30:53.000Z (almost 12 years ago)
- Last Synced: 2025-02-09T10:29:37.689Z (over 1 year ago)
- Language: Python
- Size: 293 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
lisperrypy
---------
[](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)
```