trivial/no-colon.rkt
ben 04835b5339 [6.4] move package to toplevel
Because pkgs.racket-lang doesn't seem to accept paths like
  .../repo.git#branch?tag

So I'm trying to remove the ?tag
2016-04-09 09:39:33 -04:00

23 lines
568 B
Racket

#lang typed/racket/base
;; Provides the same bindings as `trivial/main`,
;; but without the trailing colon.
(provide
set!
(all-from-out trivial/define/no-colon)
(all-from-out trivial/format/no-colon)
(all-from-out trivial/function/no-colon)
(all-from-out trivial/math/no-colon)
(all-from-out trivial/regexp/no-colon)
(all-from-out trivial/vector/no-colon))
(require
trivial/private/set-bang
trivial/define/no-colon
trivial/format/no-colon
trivial/function/no-colon
trivial/math/no-colon
trivial/regexp/no-colon
trivial/vector/no-colon)