MCPcopy Index your code
hub / github.com/beanshell/beanshell / print

Method print

src/bsh/Interpreter.java:821–829  ·  view source on GitHub ↗
( Object o )

Source from the content-addressed store, hash-verified

819 }
820
821 public final void print( Object o )
822 {
823 if (console != null) {
824 console.print(o);
825 } else {
826 out.print(o);
827 out.flush();
828 }
829 }
830
831 // End ConsoleInterface
832

Callers 2

runMethod · 0.95
printlnMethod · 0.95

Calls 2

flushMethod · 0.80
printMethod · 0.65

Tested by

no test coverage detected