/////////////////////////////////////////////////////////////////////////////// // File: CharSet.cs // // Contents: // This script runs through the standard character set, from 0 to 255. // It displays the results in eight lines. // Many emulations will not display the high-bit characters above 127, // and some of the characters are not displayable. // // Before running this script, configure TinyTERM to ignore print requests. // // Originated by P. Clark, Century Software 9/20/1999 /////////////////////////////////////////////////////////////////////////////// var line; var col; te.cls(); line = 0; do { col = 0; while (col < 32) { te.display(_chr(32 * line + col)); col = col + 1; } te.displaynl(""); line = line + 1; }while (line < 8);