Aer/tests/hello_world.aer

10 lines
91 B
Plaintext

class Main {
public function __construct() {
print('Hello world!');
}
}
new Main();