You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/pitfall/ptest/test3.rkt

13 lines
228 B
Racket

#lang racket/base
(require pitfall/pdftest)
(define (proc doc)
5 years ago
(text doc "Hello world"))
7 years ago
(define-runtime-path this "test3rkt.pdf")
(make-doc this #f proc)
7 years ago
(define-runtime-path that "test3crkt.pdf")
(make-doc that #t proc)
7 years ago