Create a class named Greeter that stores a greeting message.
Your class should have:
messagegreet that takes no parameters and returns the messageExample usage:
Greeter g = new Greeter();
g.message = 'Hello, World!';
String result = g.greet(); // Returns 'Hello, World!'
This challenge introduces you to the basics of creating a class with a property and a method.