thp-lang.org/md/learn/classes/magic.md

17 lines
132 B
Markdown
Raw Normal View History

2023-10-05 12:56:34 +00:00
# Magic methods
Are always public
```thp
class Cat
{
pub fun __sleep() -> Array[String]
{
// logic
}
}
```