Hi everyone,
i'm reading VTermOutPutDriver and I tried to use the example of the documentation:
| out |
out := VTermOutputDriver stdout.
out << 'normal text'.
out lf.
'red text' do: [ :c | out color256: Color red. out << c ].
out lf.
'bold text' do: [ :c | out bold. out << c ].
out clear.
out lf.
As I understood it��
'bold text' do: [ :c | out bold. out << c ].
Should I send an issue for not working method or wrong doc ?