// Note: this is the run() method definition only. You will need to cut and
// paste it into your program, replacing your run() method.
public void run(Frame frame, TextArea result)
{
frame.setTitle("Systax Tests");
int outputNumber;
outputNumber = 33483829;
char character = 'y';
final double PI = 3.14159;
boolean choice;
choice = true;
result.setText("" + outputNumber + " " + character + PI + choice);
}