ok awesome third levle

This commit is contained in:
Peter Cottle 2013-03-09 19:26:22 -08:00
parent 2ca8d2a7bb
commit f49937c935
2 changed files with 18 additions and 0 deletions

View file

@ -32,6 +32,19 @@ var instantCommands = [
)
});
}],
[/^show$/, function(bits) {
lines = [
intl.str('show-command'),
'show commands',
'show solution',
'show goal'
];
throw new CommandResult({
msg: lines.join('\n')
});
}],
[/^locale (\w+)$/, function(bits) {
constants.GLOBAL.locale = bits[1];