- Singapore
- https://www.abishekgoda.com
- @abishekgoda
Block or Report
Block or report abishek
Report abuse
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePinned Loading
-
-
-
1
(defun split-sentence-to-words (sentence)
2(let ((word '()))3(loop for ch across sentence4if (member ch '(#\space #\tab #\,))
5collect (coerce (reverse word) 'string) into words and do (setf word '())
-
1
(defun load-env (pathname)
2(with-open-file (stream pathname)
3(read-env stream)))
45(defun read-env (stream)

