diff --git a/tests/hello_world.aer b/tests/hello_world.aer new file mode 100644 index 0000000..69830ce --- /dev/null +++ b/tests/hello_world.aer @@ -0,0 +1,9 @@ +class Main { + + public function __construct() { + print('Hello world!'); + } + +} + +new Main(); diff --git a/tests/hello_world.exp b/tests/hello_world.exp new file mode 100644 index 0000000..cd08755 --- /dev/null +++ b/tests/hello_world.exp @@ -0,0 +1 @@ +Hello world!