Guest User

Untitled

a guest
Oct 15th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. > (define-class Foo
  2. x y z)
  3. > (define-class-instance foo Bar
  4. 1 2 3)
  5. . define-class-instance: expected class in: Bar
  6. > (define-class-instance foo Foo
  7. 1 2)
  8. . define-class-instance: need 3 arguments in: (define-class-instance foo Foo 1 2)
  9. > (define-class-instance foo Foo
  10. 1 2 3)
  11. > (slot-value bar n)
  12. . slot-value: expected typed id in: bar
  13. > (slot-value foo n)
  14. . slot-value: slot n does not exist in class Foo. in: (slot-value foo n)
  15. > (slot-value foo y)
  16. 2
  17. >
Advertisement
Add Comment
Please, Sign In to add comment