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