load stdlib on startup added - init version

This commit is contained in:
2021-02-15 00:06:24 +01:00
parent 4bc784ba80
commit 140abbccd4
2 changed files with 31 additions and 44 deletions

View File

@@ -29,4 +29,14 @@
; is a number negative?
(defun is-neg? (n) (< n 0))
; return second element of list
(defun second (l) (index l 1))
; return third element of list
(defun third (l) (index l 2))
; return fourth element of list
(defun fourth (l) (index l 3))