//This script demonstrates how to define a class.

class Test

{

       public void Output(string text)

       {

               Println(text);

               Log.Status(text);

       }

}