container.put("@weather", new String[] {"snow", "sleet", "drizzle", "rain"});
container.put("trees", new String[] {"cypress", "hemlock", "spruce"});
assertTrue(instance.size() == 5);
// persistent local variable should be kept even after eval, plus retrieved.
container.runScriptlet("a = 1");
assertTrue(instance.size() == 6);
container = new ScriptingContainer(LocalContextScope.SINGLETHREAD, LocalVariableBehavior.GLOBAL);
instance = container.getVarMap();
container.put("ARGV", new String[] {"spring", "fall"});