0

如何用 Io 语言创建“类”?

例如,我想尝试以下操作:

Dog pd

barry := Dog new("Barry")
    
barry pd 

barry name println                // Attribute of the class 
barry allFoodItemsEaten println   // Attribute of the class 
     

lisa := Dog new("Lisa")

barry feed(12)                    // A Method
   

lisa feedSummary                 // A Method         

我知道 Io 中没有类,但我想实现一个。关于如何实施的任何建议?

4

0 回答 0