#lang hyper-literate typed/racket/base @(require (for-label typed/racket/base rackunit)) @title{Title} @section{if-preexpanding} Hello world. @(if-preexpanding (void) (require (submod ".."))) @(unless-preexpanding (symbol->string ee)) @section{Submodules} Submodules work: @chunk[ (module ms typed/racket/base (define x 1) (provide x)) (module ms2 typed/racket/base (define y -1) (provide y))] And can be required: @chunk[ (require 'ms) (require (submod "." ms2))] Submodules with @racket[module*] work too: @chunk[ (module* ms* racket/base (require typed/rackunit) (check-equal? ee 'e123) (check-equal? y -1))] And so does @racket[(require (submod ".." …))]: @chunk[ (require (submod "..")) (require (submod ".." ms2))] Test with multiple subforms inside require, and coverage for @racket[for-syntax]: @chunk[ (require (for-syntax syntax/stx racket/syntax) racket/bool)] @section{Avoiding for-label} Wrap the @racket[(require (for-syntax racket/base))] in a @racket[(begin …)] so that it gets ignored, otherwise scribble complains some identifiers are loaded twice for-label, since some identifiers have already been introduced at meta-level 0 by @racketmodname[typed/racket]. @chunk[ (begin (require (for-syntax racket/base)) (require typed/rackunit))] @CHUNK[ (let* ([b 1234] [e (syntax-e #`#,b)]) (check-equal? e 1234))] @section{Main chunk} @chunk[<*> (check-true (false? #f));; Should be hyperlinked to the main docs (begin-for-syntax (define/with-syntax ;; Should be hyperlinked to the main docs x (stx-car ;; Should be hyperlinked to the main docs #'(a . b)))) (check-equal? (+ x x) 2) (check-equal? (+ x y) 0) ;; Gives an error because typed/racket/base is used on the #lang line: ;curry (check-equal? ((make-predicate One) 1) #t) (check-equal? (ann 'sym Symbol) 'sym) (define (f [x : 'e123]) x) (define ee (ann (f 'e123) 'e123)) (provide ee)]