All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bsh.util.commands.debug.bsh Maven / Gradle / Ivy

The newest version!
/**
	Toggle on and off debug mode. 
	Debug output is verbose and generally useful only for developers.
*/

bsh.help.debug = "usage: debug()";

debug() {
	this.interpreter.DEBUG = !this.interpreter.DEBUG;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy