Just passing on I am using the drools 5.4.0Beta2 <br><br>The following doesn&#39;t compile using the mvel dialect . <br>rule &quot;some rule&quot;<br> when <br>fact: Fact()<br>then<br>BasicFact fault= new BasicFact( &quot;/*&quot;);<br>
end<br><br>but <br>rule &quot;some rule&quot;<br>
 when <br>
fact: Fact()<br>
then<br>
BasicFact fault= new BasicFact( &quot;/ *&quot;);<br>
end<br>
<br>does compile some how /* is being parsed as an expression I think and not a string literal. <br><br>Thanks,<br>Ben <br>