structs in gerbil scheme (defstruct)

(defstruct A
  (some-field-name))
  
(def a (make-A 1))
(A-some-field-name a)
1