2022-09-22 16:16:55 -03:00
|
|
|
#lang scribble/manual
|
|
|
|
|
2022-09-23 11:49:59 -03:00
|
|
|
Title: Lab Four Scribble Demo
|
2022-09-22 16:16:55 -03:00
|
|
|
Date: 2022-09-21T09:00:00
|
|
|
|
Tags: cs2613, lab, racket, scribble
|
|
|
|
|
|
|
|
Demo of how Scribble works
|
|
|
|
|
|
|
|
<!-- more -->
|
|
|
|
|
|
|
|
@(define (hello) "hello")
|
|
|
|
@(define (todo hdr . lst) (list (bold hdr) (apply itemlist (map item lst))))
|
|
|
|
@hello{}
|
|
|
|
@todo["Shopping" "cheese" "fish" "shuriken"]
|