/** * Simple Java Example. */ package edu.uhcl.sce.yue.simple; public class GreetingTest { public static void main (String args[]) { Greeting greeting = new Greeting("Hello, World"); System.out.println(greeting.getGreeting()); } }