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: about 1 month ago
JSON representation
A Racket library that makes function application delimiter-sensitive
- Host: GitHub
- URL: https://github.com/jackfirth/delimit-app
- Owner: jackfirth
- License: apache-2.0
- Created: 2017-02-07T09:17:47.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-01T01:13:22.000Z (almost 8 years ago)
- Last Synced: 2025-03-24T05:17:14.546Z (about 1 month ago)
- Topics: racket, racket-library, syntax
- Language: Racket
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# delimit-app [](https://travis-ci.org/jackfirth/delimit-app) [](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)
```