FreeFormLine ffl = new FreeFormLine();
ffl.text = "Cheese(type == @{type}, price < @{price})";
m.lhs[1] = ffl;
ActionInsertFact aif = new ActionInsertFact("Person");
ActionFieldValue afv = new ActionFieldValue("age", "age", "");
afv.nature = ActionFieldValue.TYPE_TEMPLATE;
aif.addFieldValue(afv);
m.rhs[0] = aif;
m.addRow(new String[] {"\"baunax\"", "\"Cheddar\"", "23", "34"});
m.addRow(new String[] {"\"diegoll\"", "\"Gouda\"", "17", "87"});
final String drl = p.marshal(m);