This repository has been archived on 2022-05-15. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Kollokvium0307/Тюлюбаев Артём/base.lisp

6 lines
104 B
Common Lisp

(setf x (make-array '(3)
:initial-contents '(0 1 2))
)
(write x)
(setf (aref x 1) 23)
(write x)