Simple 'Hello world' test
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2018-08-05 22:10:26 +02:00
parent bb2322117f
commit fcd35584de
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
2 changed files with 10 additions and 0 deletions

9
tests/hello_world.aer Normal file
View File

@ -0,0 +1,9 @@
class Main {
public function __construct() {
print('Hello world!');
}
}
new Main();

1
tests/hello_world.exp Normal file
View File

@ -0,0 +1 @@
Hello world!