run.scm 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. (import test)
  2. (import trait)
  3. (test-group "an Eq trait"
  4. (define-trait Eq
  5. (==)
  6. (/= (lambda (a b) (not (== a b)))))
  7. (define-trait-impl (Eq number?)
  8. (== =))
  9. (define-trait-impl (Eq symbol?)
  10. (== eq?))
  11. (test-assert (== 'a 'a))
  12. (test-assert (not (/= 'a 'a)))
  13. (test-assert (/= 'a 'b))
  14. (test-assert (not (== 'a 'b)))
  15. (test-assert (== 1 1))
  16. (test-assert (not (/= 1 1)))
  17. (test-assert (/= 1 2))
  18. (test-assert (not (== 1 2))))
  19. (test-group "a Monad"
  20. (define-trait Monad
  21. (>>=)
  22. (return))
  23. (define-record nullable is-null value)
  24. (define (make-some value)
  25. (make-nullable #f value))
  26. (define (make-null)
  27. (make-nullable #t '()))
  28. (define (nullable-type x)
  29. (if (nullable-is-null x)
  30. 'null
  31. 'some))
  32. (define-trait-impl (Monad nullable?)
  33. (>>= (lambda (m f)
  34. (let ((type (nullable-type m)))
  35. (cond ((eq? type 'null)
  36. (make-null))
  37. ((eq? type 'some)
  38. (f (nullable-value m)))))))
  39. (return make-some))
  40. (define (*2 a)
  41. (make-some (* 2 a)))
  42. (test-assert (= 6 (nullable-value (>>= (make-some 3) *2))))
  43. (define x (make-some 42))
  44. (let ((return (with-type-of x Monad return)))
  45. (test-assert (= 99 (nullable-value (return 99))))))