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

21 lines
156 B
Markdown
Raw Normal View History

2023-10-05 12:56:34 +00:00
# Magic methods
2023-10-24 01:39:34 +00:00
Don't get special treatment.
2023-10-05 12:56:34 +00:00
```thp
class Cat
{
pub fun __sleep() -> Array[String]
{
// logic
}
}
```
2023-10-24 01:39:34 +00:00
```thp
```