Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 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