Example: lr.message

Example 1 - Printing a Simple Message

lr.message("Accessing Talk Forum ORB...");

Example 2 - Printing Strings, Longs, and Other Data Types

String str = "Test";
long lg = 100;
lr.message("The value of str = " + str + ".");
lr.message("The value of lg is " + lg + "." );

Example3 - Printing Output of a Function Call

lr.message("Chat Population = " + orChatForum.count() );