Aer/tests/hello_world.aer
belliash 2894c55dfa
All checks were successful
The build was successful.
Add some comments, to see if they are working.
2019-04-16 15:08:08 +02:00

13 lines
184 B
Plaintext

#!/usr/local/bin/aer
class Program {
/*
* Program entry point.
* It does not take any arguments.
*/
public void main() {
print('Hello world!'); // single line comment
}
}