13.07.2015 Views

Turbo Basic

Turbo Basic

Turbo Basic

SHOW MORE
SHOW LESS
  • No tags were found...

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

476 CLEAR parameter error - use MEMSET/$STACKThe additional parameters available to the CLEAR statement are not availablein a BASIC compiler like <strong>Turbo</strong> <strong>Basic</strong>.477 LOCAL requires DEF FN/SUBYou can only declare LOCAL variables in a function or procedure.478 SHARED requires DEF FN/SUBYou can only declare SHARED variables in a function or procedure.479 STATIC requires DEF FN/SUBYou can only declare STATIC variables in a function or procedure.480 COMMON arrays must be dynamicArrays used in a COMMON statement must be declared DYNAMIC.481 LOCAL arrays must be dynamicArrays defined as LOCAL cannot be defined as STATIC. Get rid of theSTATIC specifier or move the array definition out of the procedure or functionand into your main program.482 Parameter arrays cannot be alteredYou cannot ERASE and DIM an array used as a parameter in a function orsubprocedure.483 Array is not STATICA static array may not be DIMensioned using variables as the index descriptors.You must use either named constants or literal constants when specifYingthe indices of STATIC arrays.484 Array previously STATICIf you have two DIM statements in a program for the same array, the array isautomatically declared as DYNAMIC. You then tried to declare the arraySTATIC in another place or your program tried to issue a DIM DYNAMICto an array that was previously declared STATIC.485 Array name without "()" expectedWhen using the ERASE statement, you need not specifY the parentheseswith the array name.486 Array exceeds 64KThe size of an array cannot exceed 64K (one data segment). If you needlarger arrays, you can split up one array into several arrays.487 Arrays limited to eight dimensionsThe maximum number of dimensions that can be specified for an array iseight. This is an internal limit for the compiler.488 Invalid numeric formatYour program declared a number with more than 36 digits or a floating-pointnumber with an E component without the exponent value.Error Messages 423

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!