15 lines
315 B
Java
15 lines
315 B
Java
/*
|
|
* This source file was generated by the Gradle 'init' task
|
|
*/
|
|
package com.hithomelabs.princeton1.module4;
|
|
|
|
public class Client {
|
|
public String getGreeting() {
|
|
return "Hello World!";
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println(new Client().getGreeting());
|
|
}
|
|
}
|