As a rookie Lisp programmer, I'm documenting my journey, sharing insights and challenges I encounter while exploring the unique and powerful world of Common Lisp & Clojure.
Thanks @vindarel !, should that simplify my parse-date function? something like:
(defunparse-date(date-string)"Extracts year, month, and day from a date string formatted as YYYY-MM-DD."(let((year(parse-integerdate-string:start0:end4))(month(parse-integerdate-string:start5:end7))(day(parse-integerdate-string:start8:end10)))(valuesyearmonthday)))
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Oh, on reddit we have the idea:
Thanks @vindarel !, should that simplify my
parse-datefunction? something like: