I try to print a couple of words from right to left but my last word overwrite previous and erase line to the end. I got in my output just Second word, What I'm doing wrong ? Thank you.
fn render(&self, stdout: &mut Stdout) {
stdout
.execute(Clear(ClearType::All))
.unwrap()
.execute(MoveTo(30, 20))
.unwrap()
.execute(Print("First"))
.unwrap()
.execute(MoveTo(20, 20))
.unwrap()
.execute(Print("Second"))
.unwrap();
}