Typehinting merge #50

Merged
belliash merged 298 commits from typehinting into master 2019-04-17 11:27:52 +02:00
Showing only changes of commit 2894c55dfa - Show all commits

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