-
Language:
English
-
Language:
English
11.16. Rules with Traits Example
This example illustrates the trait interface being mapped to a field:
when
$o: OrderItem( $p : price, $code : custCode )
$c: GoldenCustomer( code == $code, $a : balance, $d: discount )
then
$c.setBalance( $a - $p*$d );
end