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.
beautiful-racket/beautiful-racket-lib/br/test.rkt

13 lines
360 B
Racket

#lang racket/base
(require setup/getinfo racket/runtime-path)
(provide message)
(define-runtime-path br-dir "../../beautiful-racket")
(define gi (get-info/full br-dir))
(define message
(format "You installed beautiful-racket~acorrectly."
(if gi
(format " v~a " (gi 'version))
" ")))
(module+ main
(displayln message))