semver-gradle/examples/test/src/main/java/App.java
2018-06-29 20:21:27 -07:00

12 lines
270 B
Java

/*
* This Java source file was generated by the Gradle 'init' task.
*/
public class App {
public String getGreeting() {
return "Hello world.";
}
public static void main(String[] args) {
System.out.println(new App().getGreeting());
}
}