breezewiki/lib/typed-rackunit.rkt
Cadence Ember c7cce5479d
Create archiver and offline code handlers
Somewhat messy. Will clean up gradually in future commits.
2023-02-06 23:56:03 +13:00

12 lines
194 B
Racket

#lang typed/racket/base
(provide
check-equal?
check-true
check-false)
(require/typed rackunit
[check-equal? (Any Any -> Void)]
[check-true (Any -> Void)]
[check-false (Any -> Void)])