Aer/tests/hello_world.aer

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