You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
798 B
Plaintext
37 lines
798 B
Plaintext
11 years ago
|
#lang scribble/manual
|
||
|
|
||
|
@(require scribble/eval (for-label racket "../main.rkt"))
|
||
|
|
||
|
@(define my-eval (make-base-eval))
|
||
11 years ago
|
@(my-eval `(require tagged-xexpr))
|
||
11 years ago
|
|
||
|
|
||
11 years ago
|
@title{tagged-xexpr}
|
||
11 years ago
|
|
||
|
@author[(author+email "Matthew Butterick" "mb@mbtype.com")]
|
||
|
|
||
|
Convenience functions for working with X-expressions in Racket.
|
||
|
|
||
|
@section{Installation & updates}
|
||
|
|
||
|
At the command line:
|
||
11 years ago
|
@verbatim{raco pkg install tagged-xexpr}
|
||
11 years ago
|
|
||
|
After that, you can update the package from the command line:
|
||
11 years ago
|
@verbatim{raco pkg update tagged-xexpr}
|
||
11 years ago
|
|
||
|
|
||
|
@section{Interface}
|
||
|
|
||
11 years ago
|
@defmodule[tagged-xexpr]
|
||
11 years ago
|
|
||
11 years ago
|
Hello tagged-xexpr.
|
||
11 years ago
|
|
||
|
|
||
|
@section{License & source code}
|
||
|
|
||
|
This module is licensed under the LGPL.
|
||
|
|
||
11 years ago
|
Source repository at @link["http://github.com/mbutterick/tagged-xexpr"]{http://github.com/mbutterick/tagged-xexpr}. Suggestions & corrections welcome.
|
||
11 years ago
|
|