Aer/tests/hello_world.aer

13 lines
184 B
Plaintext
Raw Normal View History

#!/usr/local/bin/aer
class Program {
2018-08-05 22:10:26 +02:00
/*
* Program entry point.
* It does not take any arguments.
*/
2019-03-17 19:48:52 +01:00
public void main() {
print('Hello world!'); // single line comment
2018-08-05 22:10:26 +02:00
}
}