final Less less = new Less(exampleConsole);
final More more = new More(exampleConsole);
List<MultipleChoice> choices = new ArrayList<MultipleChoice>();
choices.add(new MultipleChoice(1,"Do you want foo?"));
choices.add(new MultipleChoice(2,"Do you want bar?"));
final MultipleChoiceCommand choice =
new MultipleChoiceCommand(exampleConsole, "choice", choices);
Completion completer = new Completion() {