public Options() {
map = Maps.newHashMap();
map.put("prompt", new StringArrayVector("> "));
map.put("continue", new StringArrayVector("+ "));
map.put("expressions" , new IntArrayVector(5000));
map.put("width", new IntArrayVector(80));
map.put("digits", new IntArrayVector(7));
map.put("echo", new LogicalArrayVector(false));
map.put("verbose", new LogicalArrayVector(false));
map.put("check.bounds", new LogicalArrayVector(false));
map.put("keep.source", new LogicalArrayVector(true));
map.put("keep.source.pkgs", new LogicalArrayVector(false));
map.put("warnings.length", new IntArrayVector(1000));
map.put("OutDec", new StringArrayVector("."));
}