PEZ / rich4clojure

Practice Clojure using Interactive Programming in your editor
https://gitpod.io/#https://github.com/pez/rich4clojure
Eclipse Public License 1.0
210 stars 42 forks source link

Some tests incomplete? #22

Open ergodicbreak opened 1 year ago

ergodicbreak commented 1 year ago

Hi, again I may just be unfamiliar with hyperfiddle, but for example the problem 27 test is

(tests
  (__ '(1 2 3 4 5)) :=
  (__ "racecar") :=
  (__ [:foo :bar :foo]) :=
  (__ '(1 1 3 3 1 1)) :=
  (__ '(:a :b :c)) :=

Do these need to be fixed?

PEZ commented 1 year ago

I'm sorry. That's a bug in my script translating the problems. It should look like so:

(tests
  (__ '(1 2 3 4 5)) := false
  (__ "racecar") := true
  (__ [:foo :bar :foo]) := true
  (__ '(1 1 3 3 1 1)) := true
  (__ '(:a :b :c)) := false)