MCPcopy Create free account
hub / github.com/bmartho/GradleCourse / App

Class App

Aula 2/01-Buildscript/app/src/main/java/Project/App.java:3–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package Project;
2
3public class App {
4 public String getGreeting() {
5 return "Hello World!";
6 }
7
8 public static void main(String[] args) {
9 System.out.println(new App().getGreeting());
10 }
11}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected