small lisp updates

This commit is contained in:
2021-02-21 21:53:45 +01:00
parent a87964f552
commit 2700cdeea3
3 changed files with 22 additions and 14 deletions

View File

@@ -38,6 +38,9 @@
; return fourth element of list
(defun fourth (l) (index l 3))
; return fifth element of list
(defun fifth (l) (index l 4))
; from list of lists creates csv string
@@ -61,3 +64,6 @@
rows_str
))
(defun setq (var val) (define var val))