Closed dyoo closed 14 years ago
from Jonathan Sailor:
A student pointed out that, in ASL, make-vector can be used as: (check-expect (make-vector 4) (vector 0 0 0 0)) (check-expect (make-vector 4 2) (vector 2 2 2 2)) but the two-argument form of make-vector is a compile-time error in Moby. If Moby is unhappy with multi-arg (but arbitrarly-many arg) functions, we're more than able to just doc it that way. :-)
A student pointed out that, in ASL, make-vector can be used as:
(check-expect (make-vector 4) (vector 0 0 0 0)) (check-expect (make-vector 4 2) (vector 2 2 2 2))
but the two-argument form of make-vector is a compile-time error in Moby.
If Moby is unhappy with multi-arg (but arbitrarly-many arg) functions, we're more than able to just doc it that way. :-)
fixed in 28072c479b7733b3d8bcc4b61c3ffeb8cac45575
from Jonathan Sailor: