Files
DekaBot/target/classes/simpleRule.drl
Dennis Thiessen 0f3913b7a1 Initial Commit
2017-06-01 21:05:02 +02:00

8 lines
157 B
Plaintext

import CryptoCoin;
rule "accountBalanceAtLeast"
when
$account : Account( balance < 100 )
then
System.out.println("Warning! money running out!");
end