Example: lr.output_message
Example 1 - Printing a Simple Message
lr.output_message("Accessing Talk Forum ORB...");
Example 2 - Printing Strings, Longs, and Other Data Types
String str = "Test"; long lg = 100; lr.output_message("The value of str = " + str + "."); lr.output_message("The value of lg is " + lg + "." );
Example3 - Printing Output of a Function Call
lr.output_message("Chat Population = " + orChatForum.count() );