Aer/tests/entry_point.aer
belliash 0b04e0f7c5
All checks were successful
The build was successful.
Test program entry point.
2019-04-17 17:41:47 +02:00

16 lines
216 B
Plaintext

class Program {
void __construct() {
print("Program::__construct() called.\n");
}
void __destruct() {
print("Program::__destruct() called.\n");
}
void main() {
print("Program::main() called.\n");
}
}