mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-04-27 07:33:57 +00:00
Merge pull request #3273 from divayprakash/fix-common-lisp
Fix default make-array value, closes #2578
This commit is contained in:
commit
93fc04dbb3
@ -284,7 +284,8 @@ nil ; false; also, the empty list: ()
|
||||
;;; To access the element at 1, 1, 1:
|
||||
|
||||
(aref (make-array (list 2 2 2)) 1 1 1) ; => 0
|
||||
|
||||
;;; This value is implementation-defined:
|
||||
;;; NIL on ECL, 0 on SBCL and CCL.
|
||||
|
||||
;;; Adjustable vectors
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user