diff --git a/collects/lang/private/beginner-funs.ss b/collects/lang/private/beginner-funs.ss index b8d97c8017..3eb0eece87 100644 --- a/collects/lang/private/beginner-funs.ss +++ b/collects/lang/private/beginner-funs.ss @@ -1,5 +1,5 @@ -(module beginner-funs mzscheme +(module beginner-funs scheme (require mzlib/etc mzlib/list mzlib/math syntax/docprovide) ;; Implements the procedures: @@ -277,6 +277,8 @@ "to extract the indexed item from the list") (list (any ... -> (listof any)) "to construct a list of its arguments") + + (make-list (natural-number any -> (listof any)) "(make-list k x) constructs a list of k copies of x") ((beginner-list* list*) (any ... (listof any) -> (listof any)) "to construct a list by adding multiple items to a list")