On Fri, 10 Dec 2021 05:44:58 -0500 jgart <jg...@dismail.de> wrote: Alternatively, I was able to also load code this way also after running the following:
``` $ guix shell sbcl sbcl-cl-str rlwrap CL-USER(2): jgart@gac ~ [env] λ rlwrap sbcl This is SBCL 2.1.9, an implementation of ANSI Common Lisp. More information about SBCL is available at <http://www.sbcl.org/>. SBCL is free software, provided as is, with absolutely no warranty. It is mostly in the public domain; some portions are provided under BSD-style licenses. See the CREDITS and COPYING files in the distribution for more information. CL-USER(1): (asdf:make "str") WARNING: System definition file #P"/gnu/store/aljfy13phr526w0iqmqz0cf2cnxkjxlb-sbcl-cl-ppcre-unicode-2.1.1/share/common-lisp/sbcl/cl-ppcre-unicode/cl-ppcre-unicode.asd" contains definition for system "cl-ppcre-unicode-test". Please only define "cl-ppcre-unicode" and secondary systems with a name starting with "cl-ppcre-unicode/" (e.g. "cl-ppcre-unicode/test") in that file. ;;; Computing Hangul syllable names T CL-USER(2): (in-package :str) #<PACKAGE "STR"> STR(3): (trim " rst ") "rst" STR(4): (join " " '("foo" "bar" "baz")) "foo bar baz" STR(5): (concat "f" "o" "o") "foo" STR(6): (split "+" "foo++bar") ("foo" "" "bar") ```