This repository has been archived on 2021-04-27. You can view files and clone it, but cannot push or open issues or pull requests.

15 lines
301 B
Java

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