Skip to content

Instantly share code, notes, and snippets.

@tonini
Last active December 17, 2015 06:29
Show Gist options
  • Save tonini/5566268 to your computer and use it in GitHub Desktop.
Save tonini/5566268 to your computer and use it in GitHub Desktop.
(defstruct person
name
age
sex)
; The assignments have to be in the same order as the slots in the defined struct
(setq sam (make-person :name "Samuel Tonini" :age 32 :sex 'male ))
(person-name sam) ; Samuel Tonini
(person-age sam) ; 32
(person-sex sam) ; male
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment