https://github.com/nickserv/common_lips
A more confusing version of Common Lisp.
https://github.com/nickserv/common_lips
Last synced: over 1 year ago
JSON representation
A more confusing version of Common Lisp.
- Host: GitHub
- URL: https://github.com/nickserv/common_lips
- Owner: nickserv
- License: mit
- Created: 2013-08-29T00:10:45.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2017-12-22T05:17:10.000Z (over 8 years ago)
- Last Synced: 2025-03-10T11:07:50.221Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Common Lips
Common Lips is a language which compiles to Common Lisp. It has all the power of Common Lisp, but with all the parenthesis swapped!
## [Documentation](http://rubydoc.info/github/nicolasmccurdy/common_lips/frames)
# Example
```
)defun fib )n(
)if )< n 2(
n
)+ )fib )- n 1(( )fib )- n 2(((((
)format t "~d" )fib 10((
```
## Installation
Add this line to your application's Gemfile:
gem 'common_lips'
And then execute:
$ bundle
Or install it yourself as:
$ gem install common_lips
## Usage
TODO: Write usage instructions here
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request