Aer/tests/hello_world.aer
belliash fcd35584de
All checks were successful
The build was successful.
Simple 'Hello world' test
2018-08-05 22:10:26 +02:00

10 lines
91 B
Plaintext

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