Eval enhancements. Rewrote store to be significantly better
This commit is contained in:
parent
20821057f2
commit
3848d3bcfa
6 changed files with 363 additions and 327 deletions
|
|
@ -1,5 +1,9 @@
|
|||
;; comment out to load USERLIB
|
||||
;; (load (concat HOME "/.relish/userlib.rls"))
|
||||
|
||||
(def CFG_RELISH_POSIX
|
||||
"my job control preference"
|
||||
"1")
|
||||
|
||||
(echo "Welcome back pupper")
|
||||
(echo "Welcome back to relish.")
|
||||
(echo "Enjoy your computing.")
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
#!/bin/relish
|
||||
|
||||
(def prepend 'takes a list and appends an element to the back of it, returns prepended list'
|
||||
(def prepend
|
||||
'takes a list and appends an element to the back of it.
|
||||
returns prepended list'
|
||||
(elem list)
|
||||
(reverse (append (reverse list) elem)))
|
||||
Loading…
Add table
Add a link
Reference in a new issue