17 lines
374 B
Common Lisp
17 lines
374 B
Common Lisp
|
|
(doc::man "string-regex-list")
|
|
(doc::man "string-split")
|
|
(doc::man "string-trim")
|
|
|
|
;; (defn concat-lists (seq1 seq2)
|
|
;; (do (def l seq1)
|
|
;; (dotimes i (len seq2)
|
|
;; (set! l (push l (index seq2 i))))
|
|
;; ))
|
|
|
|
;; (print (concat-lists '(1 2 3) '(4 5 6)))
|
|
;; (1 2 3 4 5 6)
|
|
|
|
; pridat example
|
|
; >>> (doc::man "push")
|
|
; (push list element) - Add an item to the end of a list |