main.rkt (950B)
1 #lang racket/base 2 3 (module+ test 4 (require rackunit)) 5 6 ;; Notice 7 ;; To install (from within the package directory): 8 ;; $ raco pkg install 9 ;; To install (once uploaded to pkgs.racket-lang.org): 10 ;; $ raco pkg install <<name>> 11 ;; To uninstall: 12 ;; $ raco pkg remove <<name>> 13 ;; To view documentation: 14 ;; $ raco docs <<name>> 15 ;; 16 ;; For your convenience, we have included a LICENSE.txt file, which links to 17 ;; the GNU Lesser General Public License. 18 ;; If you would prefer to use a different license, replace LICENSE.txt with the 19 ;; desired license. 20 ;; 21 ;; Some users like to add a `private/` directory, place auxiliary files there, 22 ;; and require them in `main.rkt`. 23 ;; 24 ;; See the current version of the racket style guide here: 25 ;; http://docs.racket-lang.org/style/index.html 26 27 ;; Code here 28 29 (module+ test 30 ;; Tests to be run with raco test 31 ) 32 33 (module+ main 34 ;; Main entry point, executed when run with the `racket` executable or DrRacket. 35 )