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/quad/quad2/main.rkt

13 lines
335 B
Racket

#lang debug racket/base
(require "compile.rkt" "render.rkt" "quad.rkt")
(define drawing-insts (parameterize ([current-wrap-width 6])
#R (quad-compile "Hello this is the radio")))
(render-to-text drawing-insts)
(render-to-bitmap drawing-insts)
#;(render-to-html drawing-insts)
#;(render-to-pdf drawing-insts)