Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jackfirth/delimit-app

A Racket library that makes function application delimiter-sensitive
https://github.com/jackfirth/delimit-app

racket racket-library syntax

Last synced: 5 days ago
JSON representation

A Racket library that makes function application delimiter-sensitive

Awesome Lists containing this project

README

        

# delimit-app [![Build Status](https://travis-ci.org/jackfirth/delimit-app.svg?branch=master)](https://travis-ci.org/jackfirth/delimit-app) [![codecov](https://codecov.io/gh/jackfirth/delimit-app/branch/master/graph/badge.svg)](https://codecov.io/gh/jackfirth/delimit-app)

A Racket library that makes function application delimiter-sensitive.

```racket
> (require delimit-app)
> (+ 1 2 3)
6
> [1 2 3]
'(1 2 3)
> {'a 1 'b 2}
(hash 'a 1 'b 2)
```