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

https://github.com/samth/semilit

Semiliterate programming in Racket
https://github.com/samth/semilit

Last synced: 6 months ago
JSON representation

Semiliterate programming in Racket

Awesome Lists containing this project

README

          

# Semi-Literate programming for Racket

## Installation

```
% raco pkg install semilit
```

## Use

Simply use `semilit` before the language specification on the `#lang` line,
and the whole file is read by the `semilit` reader. This reader ignores all
lines that don't begin with `>`, and drops the `>` before passing the lines
on to the underlying language.

```
#lang semilit racket

This is not part of the program
> (define x 1) ;; part of the program
```