Aer/tests/magic_method.aer
belliash c2b3cc1a2f
All checks were successful
The build was successful.
Test magic methods.
2019-04-08 10:24:32 +02:00

17 lines
153 B
Plaintext

class Dog {
void __invoke() {
print("I am a dog!\n");
}
}
class Program {
void main() {
object $dog = new Dog();
$dog();
}
}