summaryrefslogtreecommitdiff
path: root/dice/src/example/java/bjc/dicelang/neodice/commands/HelpCommand.java
blob: 705745e39914f5f99721ecb1b54f4ad45965b242 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package bjc.dicelang.neodice.commands;

import static bjc.dicelang.neodice.statements.VoidStatementValue.*;

import java.util.*;

import bjc.dicelang.neodice.*;
import bjc.dicelang.neodice.statements.*;

public class HelpCommand implements Command {
	@Override
	public StatementValue execute(Iterator<String> words, DieBoxCLI state) {
		state.output.println("help has not yet been implemented. TODO");
		return VOID_INST;
	}
	
	@Override
	public String shortHelp() {
		return "prints out help for commands";
	}
	
	@Override
	public String longHelp() {
		return "Invoke the help system. Unfortunately, not yet implemented";
	}
}