This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """Module for drawing an ASCII 'I ♥ U' with a name below. | |
| This module provides utilities to render a stylized ASCII art | |
| composition featuring the letters I and U flanking a heart shape, | |
| followed by a centered name. Intended for terminal output with | |
| optional ANSI color support. | |
| """ | |
| HEART: list[str] = [ | |
| " XXXXX XXXXX ", |