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

Class App

Aula 1/01-Testing_Gradlew/app/src/main/java/Project/App.java:6–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected