thp-web/md/learn/classes/interfaces.md

258 B

Interfaces

interface Serializable
{
    // Methods are always public in interfaces
    fun serialize() -> String
}



class Cat -> Serializable
{
    pub fun Serializable() -> String
    {
        // code
    }
}

No interface inheritance.