regexp-search added, std lib loader changes, more REadme items
This commit is contained in:
@@ -14,11 +14,11 @@
|
||||
(defun scitej (n)
|
||||
(if (<= n 1)
|
||||
1
|
||||
(+ n (scitej
|
||||
(- n 1)))
|
||||
(+ n (scitej (- n 1)))
|
||||
))
|
||||
|
||||
(print (scitej 4000))
|
||||
; (print (scitej 5))
|
||||
|
||||
|
||||
|
||||
@@ -97,4 +97,7 @@
|
||||
(print (str-to-date "01.01.1970" "%d.%m.%Y"))
|
||||
(print (date-add (str-to-date "01.01.1970" "%d.%m.%Y") 1 "day"))
|
||||
|
||||
(print (regex-search? "test.lsp" "^.*\.l(i)?sp$"))
|
||||
|
||||
|
||||
(print "Test ends")
|
||||
Reference in New Issue
Block a user