Prepare for writing the documentation.

This commit is contained in:
Sergiu Ivanov 2020-11-29 00:28:46 +01:00
parent 12cc862c94
commit 596e1b7b5d
3 changed files with 19 additions and 2 deletions

View File

@ -3,4 +3,4 @@
(define deps '("base"
"graph-lib"
"rackunit-lib"))
(define scribblings '(("scribblings/manual.scrbl" ())))
(define scribblings '(("scribblings/manual.scrbl" (multi-page))))

View File

@ -1,5 +1,10 @@
#lang scribble/manual
@(require (for-label racket graph))
@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
View 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")
]