From 2894c55dfa821113abea9057eb1ade01aac01ebe Mon Sep 17 00:00:00 2001 From: belliash Date: Tue, 16 Apr 2019 15:08:08 +0200 Subject: [PATCH] Add some comments, to see if they are working. --- tests/hello_world.aer | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 } }