📜  如何在球拍中制作大小为 n 的列表 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:33.832000             🧑  作者: Mango

代码示例1
Use "build-list":
(build-list n proc): Creates a list of n elements by applying proc to 
the integers from 0 to (sub1 n) in order. If lst is the resulting list, 
then (list-ref lst i) is the value produced by (proc i).