null
¶The null
object in the JVM is by default displayed as null
. But if you prefer to show no result at all, you can configure that as follows:
com.twosigma.beakerx.kernel.Kernel.showNullExecutionResult
com.twosigma.beakerx.kernel.Kernel.showNullExecutionResult = true;
String seeNullString = null;
seeNullString
com.twosigma.beakerx.kernel.Kernel.showNullExecutionResult = false;
String noNullString = null;
noNullString