Merge remote-tracking branch 'upstream/master'

This commit is contained in:
macroscopic64
2019-02-14 00:48:00 +05:30
553 changed files with 6882 additions and 1860 deletions
@@ -0,0 +1,12 @@
package com.baeldung.java9.aot;
public class JaotCompilation {
public static void main(String[] argv) {
System.out.println(message());
}
public static String message() {
return "The JAOT compiler says 'Hello'";
}
}