1 | sh$ raco pkg install beautiful-racket |
1 | sh$ raco pkg update beautiful-racket |
1 | sh$ racket -l br/test |
1 | You installed beautiful-racket correctly. |
1 2 | #lang info (define collection 'multi) |
1 2 | sh$ cd /path/to/work sh$ raco pkg install |
1 2 3 | Linking current directory as a package raco setup: version: 7.3.0.6 raco setup: platform: x86_64-macosx [3m] ··· |
1 2 3 4 5 6 7 8 | #lang br/quicklang (provide (rename-out [mb #%module-begin])) (define-macro (mb . _) #'(#%module-begin (displayln "You did it"))) (module reader syntax/module-reader foo) |
1 | #lang foo |
1 | You did it |
1 | sh$ raco pkg remove work |