14 lines
286 B
Java
14 lines
286 B
Java
/*
|
|
* This source file was generated by the Gradle 'init' task
|
|
*/
|
|
package org.example;
|
|
|
|
public class App {
|
|
public String getGreeting() {
|
|
return "Hello World!";
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println(new App().getGreeting());
|
|
}
|
|
}
|