CS2613/journal/_src/posts/2022-09-21-lab-04-scribble-demo.scrbl
2022-10-17 10:38:02 -03:00

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