14 lines
315 B
Racket
14 lines
315 B
Racket
#lang scribble/manual
|
|
|
|
Title: Lab Four Scribble Demo
|
|
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"] |