I believe people still write a lot of console applications, including interactive ones, especially small utilities and administrative interfaces. Mostly for sake of simplicity.
Do you write interactive console applications? Do you think it should be even easier than already is?
U: for clarity, let's define 'interactive console application' an any application running in terminal listening to user's commands. I.e. some command shell.
Java and .NET suggestions especially welcome.
I do have a very simple solution: cliche.sourceforge.net.
package asg.cliche.sample;
import asg.cliche.Command;
import asg.cliche.ShellFactory;
import java.io.IOException;
public class HelloWorld {
@Command // One,
public String hello() {
return "Hello, World!";
}
@Command // two,
public int add(int a, int b) {
return a + b;
}
public static void main(String[] args) throws IOException {
ShellFactory.createConsoleShell("hello", "", new HelloWorld())
.commandLoop(); // and three.
}
}
Three additional lines of code aren't bad, I think...
