diff options
Diffstat (limited to 'app/src/main/java/tumble')
-rw-r--r-- | app/src/main/java/tumble/App.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/src/main/java/tumble/App.java b/app/src/main/java/tumble/App.java new file mode 100644 index 0000000..968a9ca --- /dev/null +++ b/app/src/main/java/tumble/App.java @@ -0,0 +1,14 @@ +/* + * This Java source file was generated by the Gradle 'init' task. + */ +package tumble; + +public class App { + public String getGreeting() { + return "Hello World!"; + } + + public static void main(String[] args) { + System.out.println(new App().getGreeting()); + } +} |