Prints the given char. Use println() to print a '\n'. @param c The char
(char c)
| 145 | * @param c The char |
| 146 | */ |
| 147 | public void print(char c) { |
| 148 | writer.print(c); |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Prints the given int. |
no outgoing calls
no test coverage detected