#lang scribble/manual Title: Lab Three Scribble Demo Date: 2022-09-21T09:00:00 Tags: cs2613, lab, racket, scribble Demo of how Scribble works @(define (hello) "hello") @(define (todo hdr . lst) (list (bold hdr) (apply itemlist (map item lst)))) @hello{} @todo["Shopping" "cheese" "fish" "shuriken"]