test.scm 228 B

1234567891011
  1. (use-modules (guix records))
  2. (define-record-type* <sway-bindsym>
  3. sway-bindsym make-sway-bindsym
  4. sway-bindsym?
  5. (key-combo sway-bindsym-key-combo
  6. (default "")))
  7. (display sway-bindsym)
  8. (display (sway-bindsym))