info.rkt
#lang setup/infotab
(define name "Miller-Rabin Primality Test")
(define blurb
  '("provides the function \"prime?\" which implements the miller-rabin primality test. "
     "It takes a number N and the number of times to test it K and returns whether or not the number "
     "N is (probably) prime. Therefore, its contract can be thus given: "
     "(prime? (-> integer? integer? boolean?)."))

(define primary-file "is-prime.rkt")
(define categories '(system devtools scientific misc))
(define release-notes '((p "initial release. ")))
(define version "0.1")