Terminal control/Positional read: Difference between revisions

Content added Content deleted
mNo edit summary
(Added BBC BASIC)
Line 63: Line 63:
20 REM So we subtract one from the coordinates
20 REM So we subtract one from the coordinates
30 LET c$ = SCREEN$(5,2)</lang>
30 LET c$ = SCREEN$(5,2)</lang>

=={{header|BBC BASIC}}==
{{works with|BBC BASIC for Windows}}
<lang bbcbasic> PRINT TAB(2,5) "Here"
char$ = GET$(2,5)
PRINT ''"Character at column 3 row 6 was " char$</lang>


=={{header|C}}==
=={{header|C}}==