All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.drools.tutorials.banking.Example3.drl Maven / Gradle / Ivy

The newest version!
package org.drools.tutorials.banking

 
rule "Rule 01"   
    when
        $number : Number( )
        not Number( intValue < $number.intValue )
    then
        System.out.println("Number found with value: " + $number.intValue() ); 
        retract( $number );
end 




© 2015 - 2025 Weber Informatics LLC | Privacy Policy