Skip to content

Commit

Permalink
Merge pull request #2 from samth/main
Browse files Browse the repository at this point in the history
remove provides that are now in ISL.
  • Loading branch information
dbp committed Apr 27, 2023
2 parents 57ec378 + 2e694ff commit e396664
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions main.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,17 @@
(provide (rename-out [intermediate-lambda lambda]
[intermediate-require require]
[my-define-struct define-struct]
[arbitrary-integer Integer]
[arbitrary-printable-ascii-string String]
[arbitrary-boolean Boolean]
;[arbitrary-integer Integer]
;[arbitrary-printable-ascii-string String]
;[arbitrary-boolean Boolean]
;[arbitrary-integer-from-to Integer-from-to]
[arbitrary-natural Natural]
[arbitrary-list ListOf]
;[arbitrary-natural Natural]
;[arbitrary-list ListOf]
;[arbitrary-nonempty-list NonEmptyListOf]
[arbitrary-record RecordOf]
[arbitrary-procedure ProcedureOf]
[arbitrary-procedure ->]))
;[arbitrary-record RecordOf]
;[arbitrary-procedure ProcedureOf]
;[arbitrary-procedure ->]
))
(provide (prefix-out qc: (all-from-out quickcheck)))


Expand Down Expand Up @@ -133,4 +134,4 @@
(raise-syntax-error #f "`check-property' must be at the top level" stx))
(syntax-case stx ()
((_ prop) #`(do-check-property #,(syntax-srcloc stx) prop))
(_ (raise-syntax-error #f "`check-property' expects a single operand" stx))))
(_ (raise-syntax-error #f "`check-property' expects a single operand" stx))))

0 comments on commit e396664

Please sign in to comment.