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:
Sergiu Ivanov 2020-11-29 17:43:20 +01:00
parent 8487b64287
commit e2788be237
4 changed files with 39 additions and 0 deletions

View File

@ -8,3 +8,6 @@ Welcome to my documentation: @racket[(list 'testing 1 2 3)].
@table-of-contents[]
@include-section["utils.scrbl"]
@include-section["functions.scrbl"]
@include-section["networks.scrbl"]
@include-section["rs.scrbl"]

View 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")
]

View 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
View 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")
]