You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's something strange when formatting my lisp code. Certain characters is
escaped, and some is split. Notice how (.>) becomes (\.>) and #\space
becomes #\s pace.
(define get-list
(.> get
(map (split #\space))))
(define get-list
(\.> get
(map (split #\s pace))))