PrintSectionMarker is a convenience function that prints the result of SectionMarker with a newline appended.
(centeredText string, fillerCharacter rune, totalLength int)
| 38 | |
| 39 | // PrintSectionMarker is a convenience function that prints the result of SectionMarker with a newline appended. |
| 40 | func PrintSectionMarker(centeredText string, fillerCharacter rune, totalLength int) { |
| 41 | fmt.Println(SectionMarker(centeredText, fillerCharacter, totalLength)) |
| 42 | } |
no test coverage detected