Wrap the given string with the control characters to make the text appear bold in the console
(String str)
| 393 | * Wrap the given string with the control characters to make the text appear bold in the console |
| 394 | */ |
| 395 | public static String bold(String str) { |
| 396 | return (SET_BOLD_TEXT + str + SET_PLAIN_TEXT); |
| 397 | } |
| 398 | |
| 399 | /** |
| 400 | * Python join() |
no outgoing calls
no test coverage detected