Now with Drools demo (Rete System to match which level building rules to fire for which PlayerProfiles/Archetypes).

This commit is contained in:
Woody Folsom
2012-03-17 16:46:01 -04:00
parent 28cc5715e9
commit 27d357f1fc
13 changed files with 100 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package org.drools.examples.simple;
rule "Account balance is less than 100"
when
$account : Account( balance < 100 ) // condition
then
System.out.println("Account number: " + $account.getId() + " is below 100"); // consequence
end