ConfigurationReader reader = new ConfigurationReader();
Configuration config = reader.read(configURL);
Twiddle twiddle = new Twiddle(world);
twiddle.configure(config);
if (args.length != 0) {
int result = twiddle.execute(args);
System.exit(result);
}