https://github.com/suzannesoy/dotlambda
Racket library which splits dotted identifiers like a.b.c, also supports λ<arg>.(code) syntax
https://github.com/suzannesoy/dotlambda
racket-library
Last synced: 4 months ago
JSON representation
Racket library which splits dotted identifiers like a.b.c, also supports λ<arg>.(code) syntax
- Host: GitHub
- URL: https://github.com/suzannesoy/dotlambda
- Owner: SuzanneSoy
- License: cc0-1.0
- Created: 2017-04-09T14:38:30.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2021-04-04T14:53:09.000Z (about 5 years ago)
- Last Synced: 2025-03-19T00:02:30.640Z (over 1 year ago)
- Topics: racket-library
- Language: Racket
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-more.md
Awesome Lists containing this project
README
[](https://travis-ci.org/jsmaniac/dotlambda)
[](https://codecov.io/gh/jsmaniac/dotlambda)
[](http://jsmaniac.github.io/travis-stats/#jsmaniac/dotlambda)
[](http://docs.racket-lang.org/dotlambda/)
[](https://github.com/jsmaniac/dotlambda/issues)
[](https://creativecommons.org/publicdomain/zero/1.0/)
dotlambda
=========
Racket library which splits dotted identifiers like `a.b.c` into an expression starting with `#%dotted-id`. The semantics of `#%dotted-id` are customizable.
Also supports `λ.(code)` syntax, as an alternative implementation to AlexKnauth's [#lang afl](https://github.com/AlexKnauth/afl).