thp-lang.org/md/learn/classes/interfaces.md
2023-10-23 20:39:34 -05:00

260 B

Interfaces

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



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

No interface inheritance.