9 lines
219 B
Text
9 lines
219 B
Text
--
|
|
-- demo\rosetta\Positional_read.exw
|
|
-- ================================
|
|
--
|
|
position(6,1) -- line 6 column 1 (1-based)
|
|
puts(1,"abcdef")
|
|
integer {ch,attr} = get_screen_char(6,3)
|
|
printf(1,"\n\n=>%c",ch)
|
|
{} = wait_key()
|