home *** CD-ROM | disk | FTP | other *** search
- /*
- print a table of ASCII character codes
- */
- v = set("newline"); % remember the current newline setting
- set("newline",""); % turns off new lines in ? command
- for(i=0;i<255;i=i+10) {
- for(j=0;j<10;j=j+1)
- ? i+j," ",chr(i+j)," ";
- ? "\n";
- }
- set("newline",v); % set newline to what it was on entry
-