Add the Scribble files for almost all modules.
The generics module will probably disappear or take a different shape in the near future.
This commit is contained in:
parent
8487b64287
commit
e2788be237
4 changed files with 39 additions and 0 deletions
|
@ -8,3 +8,6 @@ Welcome to my documentation: @racket[(list 'testing 1 2 3)].
|
||||||
@table-of-contents[]
|
@table-of-contents[]
|
||||||
|
|
||||||
@include-section["utils.scrbl"]
|
@include-section["utils.scrbl"]
|
||||||
|
@include-section["functions.scrbl"]
|
||||||
|
@include-section["networks.scrbl"]
|
||||||
|
@include-section["rs.scrbl"]
|
||||||
|
|
12
scribblings/functions.scrbl
Normal file
12
scribblings/functions.scrbl
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#lang scribble/manual
|
||||||
|
@(require (for-label racket graph))
|
||||||
|
|
||||||
|
@title[#:tag "functions"]{dds/functions: Formal Functions}
|
||||||
|
|
||||||
|
@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")
|
||||||
|
]
|
12
scribblings/networks.scrbl
Normal file
12
scribblings/networks.scrbl
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#lang scribble/manual
|
||||||
|
@(require (for-label racket graph))
|
||||||
|
|
||||||
|
@title[#:tag "networks"]{dds/networks: Formal Dynamical Networks}
|
||||||
|
|
||||||
|
@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")
|
||||||
|
]
|
12
scribblings/rs.scrbl
Normal file
12
scribblings/rs.scrbl
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#lang scribble/manual
|
||||||
|
@(require (for-label racket graph))
|
||||||
|
|
||||||
|
@title[#:tag "rs"]{dds/rs: Reaction Systems}
|
||||||
|
|
||||||
|
@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