123. VDU code reminder ~~~~~~~~~~~~~~~~~ You may not be aware that VDU codes may be used in place of some PRINT statements. For example, the term VDU(n) is directly equivalent to the term PRINT CHR$(n); . Note that the brackets are optional in both cases and that there is a semicolon after the latter term. Also, VDU31,x,y is directly equivalent to PRINT TAB(x,y); Thus, the two statements below are directly equivalent, but the second one is shorter and tidier. This will not necessarily save much memory space as the second line is only one byte shorter than the first but even if you don't save any memory space, a shorter listing is an advantage in itself. 10 PRINTTAB(10,12)CHR$136;CHR$131;:INPUT"Name ? "N$ 10 VDU31,10,12,136,131:INPUT"Name ? "N$