(defvar *records* '((:name "alice" :age 30 :city "london" :intro "Alice is a software engineer at SmallNameCo where she has been working since 2010. Her favorite programming languages are Perl and Common Lisp. She volunteers her time every weekend to teach mathematics to students from across the country.") (:name "bob" :age 31 :city "new york" :intro "Bob is a software engineer at SmallNameCo where he has been working since 2015. His favorite programming languages are Python and C++. He has a pet dog named Jackie. He likes to surfboard during the weekends."))) (getf (first *records*) :intro) ;; Return value of last expression shown below. CL-USER> (getf (first *records*) :intro) "Alice is a software engineer at SmallNameCo where she has been working since 2010. Her favorite programming languages are Perl and Common Lisp. She volunteers her time every weekend to teach mathematics to students from across the country."