diff --git a/tests/hello_world.aer b/tests/hello_world.aer index e8ced87..bc2918f 100644 --- a/tests/hello_world.aer +++ b/tests/hello_world.aer @@ -1,7 +1,12 @@ +#!/usr/local/bin/aer class Program { + /* + * Program entry point. + * It does not take any arguments. + */ public void main() { - print('Hello world!'); + print('Hello world!'); // single line comment } }