" $s : String() from context.get(\"key\")\n" +
" then\n" +
" System.out.println($s);" +
"end\n";
KnowledgeBase kb = loadKnowledgeBaseFromString( drl );
StatefulKnowledgeSession ks = kb.newStatefulKnowledgeSession();
Map<String, String> context = new HashMap<String, String>();
context.put("key", "value");
ks.setGlobal("context", context);