1;;> This is the first library2(define-library (scmdoc first library)3 (export my-id)45 (begin6 ;;> Some identifier.7 (define my-id 1)))89;;> This is the second library10(define-library (scmdoc second library)11 (export other-id)1213 (begin14 ;;> Other identifier.15 (define other-id 2)))