public class helloworld { public static void main(String [] args) { helloworld h = new helloworld(); h.greet(); } public void greet() { System.out.println("Hi, this is your greeting"); } }