Aer/tests/hello_world.aer

10 lines
91 B
Plaintext
Raw Normal View History

2018-08-05 22:10:26 +02:00
class Main {
public function __construct() {
print('Hello world!');
}
}
new Main();