CDE
This commit is contained in:
parent
518da4a923
commit
764da6cbbb
6144 changed files with 83610 additions and 11 deletions
|
|
@ -0,0 +1,18 @@
|
|||
(class +Eatable)
|
||||
|
||||
(dm eat> ()
|
||||
(prinl "I'm eatable") )
|
||||
|
||||
|
||||
(class +FoodBox)
|
||||
# obj
|
||||
|
||||
(dm set> (Obj)
|
||||
(unless (method 'eat> Obj) # Check if the object is eatable
|
||||
(quit "Object is not eatable" Obj) )
|
||||
(=: obj Obj) ) # If so, set the object
|
||||
|
||||
|
||||
(let (Box (new '(+FoodBox)) Eat (new '(+Eatable)) NoEat (new '(+Bla)))
|
||||
(set> Box Eat) # Works
|
||||
(set> Box NoEat) ) # Gives an error
|
||||
Loading…
Add table
Add a link
Reference in a new issue