Console icon indicating copy to clipboard operation
Console copied to clipboard

Setting the cursor position doesn't change anything

Open EmmanuelCervettiIESSUD opened this issue 6 years ago • 0 comments

Hi. My os is Lubuntu.

Setting the cursor position doesn't change anything, echo is still printed, in a continuous stream where anything printed is printed following each other.

Hoa\Console\Cursor::moveTo(0, 0);
echo "hi" ;
Hoa\Console\Cursor::moveTo(10,10);
echo "ho" ;
Hoa\Console\Cursor::moveTo(20, 20);
echo "hu" ;

will echo : hihohu

I would be happy to help debugging.

EmmanuelCervettiIESSUD avatar Jul 04 '19 15:07 EmmanuelCervettiIESSUD