xieite ::term ::underline ()
Defined in header <xieite/io/term.hpp>
Enables or disables underlined text.
Declaration
void underline (bool x )noexcept ;
Example
Possible output:int main () {xieite ::term term ;term .underline (true );std ::puts ("Hello, world!" ); }
[View in Compiler Explorer]Hello, world!