CobbleConsole is an alternative to commands, made more for fun and novelty.
to run a command, follow the example below
Code (Text):
$ clear
The CobbleConsole API is made to be as simple as possible for anyone.
Below is an example
Code (Java):
// for example, here's the code to the built-in clear command publicclass ClearCommand
extends ConsoleCommand
{ @Override
publicString getIdentifier
(){ return"clear"; }
@Override
publicString getDescription
(){ return"clears the \"console\""; }