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.
9 lines
294 B
Racket
9 lines
294 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 v~a correctly." (gi 'version)))
|
|
(module+ main
|
|
(displayln message))
|