rule "stringConcat"
when true
then
    let result = "aa" + "bb" + "cc";
    set_field("result", result);
end
