Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexknauth/gnal-lang
a racket #lang that allows relative module paths for reader languages
https://github.com/alexknauth/gnal-lang
Last synced: about 1 month ago
JSON representation
a racket #lang that allows relative module paths for reader languages
- Host: GitHub
- URL: https://github.com/alexknauth/gnal-lang
- Owner: AlexKnauth
- License: mit
- Created: 2016-07-26T21:47:47.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-01-07T14:33:40.000Z (almost 3 years ago)
- Last Synced: 2024-10-16T02:55:10.696Z (3 months ago)
- Language: Racket
- Homepage:
- Size: 4.88 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
gnal-lang [![Build Status](https://travis-ci.org/AlexKnauth/gnal-lang.png?branch=master)](https://travis-ci.org/AlexKnauth/gnal-lang)
===
A racket `#lang` that allows relative module paths for reader languagesIf `"my-lang.rkt"` contains a `reader` submodule with a reader
implementation, then you can use that as a `#lang` even when it's not
installed as a collection, by using the `#lang` line:
```racket
#lang gnal "my-lang.rkt"
```If `"my-lang"` refers to a directory that contains a `/lang/reader.rkt`
file, then you can use that as a `#lang` as well, with:
```racket
#lang gnal "my-lang"
```