Add example for an iota error condition

master
Mark Oteiza 9 years ago
parent 6a578338b6
commit 5f7f2d6c5f
  1. 3
      dev/examples.el

@ -616,7 +616,8 @@ new list."
(defexamples -iota
(-iota 6) => '(0 1 2 3 4 5)
(-iota 4 2.5 -2) => '(2.5 0.5 -1.5 -3.5))
(-iota 4 2.5 -2) => '(2.5 0.5 -1.5 -3.5)
(-iota -1) !!> wrong-type-argument)
(defexamples -zip-with
(-zip-with '+ '(1 2 3) '(4 5 6)) => '(5 7 9)

Loading…
Cancel
Save