Guest User

Untitled

a guest
Jan 23rd, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. ;; new, incoherent mixing of options
  2. (define-prefab "foo"
  3. (:from test2
  4. :library test
  5. :source "/foo/bar"
  6. :mode link
  7. :some-other-metadata 42)
  8. ("bar"
  9. (:mode link
  10. :source "/something/else"
  11. :from test5))))
  12.  
  13. ;; new, but written with ordering assumptions
  14. (define-prefab "foo"
  15. (:library test
  16. :mode link
  17. :source "/foo/bar"
  18. :from test2
  19. :some-other-metadata 42)
  20. ("bar"
  21. (:mode link
  22. :source "/something/else"
  23. :from test5)))
  24.  
  25. ;; and then, grouping the mode minidsl together into plist form.
  26. (define-prefab "foo"
  27. (:library test
  28. :link (:source "/foo/bar" :from test2)
  29. :some-other-metadata 42)
  30. ("bar"
  31. (:link (:source "/something/else" :from test5))))
Add Comment
Please, Sign In to add comment