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