Add some comments, to see if they are working.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-04-16 15:08:08 +02:00
parent 0b11d59f9f
commit 2894c55dfa
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 6 additions and 1 deletions

View File

@ -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
}
}