RE: strange thing with put_screen_char()
- Posted by Gwen <mb11363 at chello.be> Mar 21, 2001
- 463 views
Thank you Rob, btw, I'm very interested about the speed of the differents ways to display a line of text on screen, in text-mode (each char. has a different color, so I can't use simply puts(1, txt) ). Is put_screen_char(1,1, txt_with_attributes) faster than for i=1 to n do text_color(attributes[i]) position(1, i) puts(1, txt[i]) end for ?? (I'm too lazy to make a little benchmark Gwen