Print a debug message on debug stream associated with this interpreter only if debugging is turned on.
(String s)
| 835 | only if debugging is turned on. |
| 836 | */ |
| 837 | public final static void debug(String s) |
| 838 | { |
| 839 | if ( DEBUG ) |
| 840 | debug.println("// Debug: " + s); |
| 841 | } |
| 842 | |
| 843 | /* |
| 844 | Primary interpreter set and get variable methods |
no test coverage detected