From fcd35584de1d87965ad878d299787630f2d78e64 Mon Sep 17 00:00:00 2001 From: belliash Date: Sun, 5 Aug 2018 22:10:26 +0200 Subject: [PATCH] Simple 'Hello world' test --- tests/hello_world.aer | 9 +++++++++ tests/hello_world.exp | 1 + 2 files changed, 10 insertions(+) create mode 100644 tests/hello_world.aer create mode 100644 tests/hello_world.exp 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!