Mazes written lisp
.gitignore | 1 year ago | ||
README.md | 1 year ago | ||
binary-tree.lisp | 1 year ago | ||
distance-grid.lisp | 1 year ago | ||
distances.lisp | 1 year ago | ||
grid.lisp | 1 year ago | ||
mazes.asd | 1 year ago | ||
mazes.lisp | 1 year ago | ||
package.lisp | 1 year ago | ||
side-winder.lisp | 1 year ago | ||
statements.lisp | 1 year ago |
Curtis Lewis defgeneric@protonmail.com
Maze examples from Mazes For Programmers written in Common Lisp
Notes:
2023-04-15 08:07:33 Saturday
Attempting to make a branch in fossil. Apparently I need to make a change first. Thus the reason for this comment.
2023-03-24 Friday
(defgeneric link ((current-cell cell) (neighbor-cell cell) (bidi t)) (:documentation "Links current cell with neighbor cell. If bidi (bi-directional) is true both cells are updated"))
Execution of a form compiled with errors. Form: (DEFGENERIC LINK ((CURRENT-CELL CELL) (NEIGHBOR-CELL CELL) (BIDI T)) (:DOCUMENTATION "Links current cell with neighbor cell. If bidi (bi-directional) is true both cells are updated")) Compile-time error:
2023-03-26 09:30:29 Sunday
Can not use constants to create array... (setf matrix (make-array '(rows cols) :initial-element nil))
Last sentence in user797257 response
1st tried '(,rows ,cols) then got an error unquote not backquoted
Finally `(,rows ,cols)