make-list -- r7rs Definition constructor;
Procedure variants:
((range-length-zero) -> (null))
range-length-zero;null;((range-length-zero any) -> (null))
range-length-zero;any;null;((range-length-not-zero) -> (list-proper-not-null))
range-length-not-zero;list-proper-not-null;((range-length-not-zero any) -> (list-proper-not-null))
range-length-not-zero;any;list-proper-not-null;scheme:base -- (scheme base);scheme -- (scheme);(make-list k) (make-list k fill)Returns a newly allocated list of
kelements. If a second argument is given, then each element is initialized tofill. Otherwise the initial contents of each element is unspecified.(make-list 2 3) ===> (3 3)
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.