commit 6b90d2e9f6d5c5b67d33278fc581190b2dec71f6
parent c510daa3d8d9192b0a486908a5f3cd283993fd1c
Author: Georges Dupéron <georges.duperon@gmail.com>
Date: Mon, 27 Mar 2017 21:43:53 +0200
Remove empty template from main.rkt
Diffstat:
| M | main.rkt | | | 34 | ---------------------------------- |
1 file changed, 0 insertions(+), 34 deletions(-)
diff --git a/main.rkt b/main.rkt
@@ -1,35 +1 @@
#lang racket/base
-
-(module+ test
- (require rackunit))
-
-;; Notice
-;; To install (from within the package directory):
-;; $ raco pkg install
-;; To install (once uploaded to pkgs.racket-lang.org):
-;; $ raco pkg install <<name>>
-;; To uninstall:
-;; $ raco pkg remove <<name>>
-;; To view documentation:
-;; $ raco docs <<name>>
-;;
-;; For your convenience, we have included a LICENSE.txt file, which links to
-;; the GNU Lesser General Public License.
-;; If you would prefer to use a different license, replace LICENSE.txt with the
-;; desired license.
-;;
-;; Some users like to add a `private/` directory, place auxiliary files there,
-;; and require them in `main.rkt`.
-;;
-;; See the current version of the racket style guide here:
-;; http://docs.racket-lang.org/style/index.html
-
-;; Code here
-
-(module+ test
- ;; Tests to be run with raco test
- )
-
-(module+ main
- ;; Main entry point, executed when run with the `racket` executable or DrRacket.
- )