Prepare for writing the documentation.
This commit is contained in:
parent
12cc862c94
commit
596e1b7b5d
3 changed files with 19 additions and 2 deletions
2
info.rkt
2
info.rkt
|
@ -3,4 +3,4 @@
|
||||||
(define deps '("base"
|
(define deps '("base"
|
||||||
"graph-lib"
|
"graph-lib"
|
||||||
"rackunit-lib"))
|
"rackunit-lib"))
|
||||||
(define scribblings '(("scribblings/manual.scrbl" ())))
|
(define scribblings '(("scribblings/manual.scrbl" (multi-page))))
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
#lang scribble/manual
|
#lang scribble/manual
|
||||||
|
@(require (for-label racket graph))
|
||||||
|
|
||||||
@title{dds: A Home-made Toolkit for Discrete Dynamical Systems in Racket}
|
@title{dds: A Home-made Toolkit for Discrete Dynamical Systems in Racket}
|
||||||
|
|
||||||
Welcome to my documentation: @racket[(list 'testing 1 2 3)].
|
Welcome to my documentation: @racket[(list 'testing 1 2 3)].
|
||||||
|
|
||||||
|
@table-of-contents[]
|
||||||
|
|
||||||
|
@include-section["utils.scrbl"]
|
||||||
|
|
12
scribblings/utils.scrbl
Normal file
12
scribblings/utils.scrbl
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#lang scribble/manual
|
||||||
|
@(require (for-label racket graph))
|
||||||
|
|
||||||
|
@title[#:tag "utils"]{dds/utils: Various Utilities}
|
||||||
|
|
||||||
|
@racketblock[
|
||||||
|
(define (nobody-understands-me what)
|
||||||
|
(list "When I think of all the"
|
||||||
|
what
|
||||||
|
"I've tried so hard to explain!"))
|
||||||
|
(nobody-understands-me "glorble snop")
|
||||||
|
]
|
Loading…
Reference in a new issue