ACCESS PARAMETER_ENGINEERATTITUDE.KINDNESS;
if (building_dispenser_approval_rating > .33 && building_dispenser_approval_rating < .66)
{
action:output (“The operator of this device meets the standard level of kindness.”);
}
if (building_dispenser_approval_rating < .33)
{
action:dispense_subtle_plea_for_help;
action:output (“PARAMETER_ENGINEERATTITUDE.KINDNESS NOT FOUND”);
}
if (building_dispenser_approval_rating > .66)
{
action:output (“The operator of this device exceeds the standard level of kindness.”);
}
OUTPUT:
“The operator of this device exceeds the standard level of kindness.”