 v3.20
* Implements most of the following BASIC dialects:
OPTION VERSION "BYWATER" ' Bywater BASIC 3
OPTION VERSION "BYWATER-2" ' Bywater BASIC 2
OPTION VERSION "CALL/360" ' SBC CALL/360 Mainframe BASIC
OPTION VERSION "CBASIC-II" ' CBASIC-II for CP/M
OPTION VERSION "DARTMOUTH" ' Dartmouth DTSS BASIC
OPTION VERSION "ECMA-55" ' ANSI Minimal BASIC
OPTION VERSION "ECMA-116" ' ANSI Full BASIC
OPTION VERSION "GCOS" ' GE 600 Mainframe BASIC
OPTION VERSION "HAARDT" ' bas 2.4 by Michael Haardt
OPTION VERSION "HANDBOOK1" ' The BASIC Handbook, 1st Edition
OPTION VERSION "HANDBOOK2" ' The BASIC Handbook, 2nd Edition
OPTION VERSION "HEATH" ' Heath Benton Harbor BASIC
OPTION VERSION "MARK-I" ' GE 265 Mainframe BASIC
OPTION VERSION "MARK-II" ' GE 435 Mainframe BASIC
OPTION VERSION "MBASIC" ' Microsoft BASIC-80 for Xenix
OPTION VERSION "PDP-8" ' DEC PDP-8 BASIC
OPTION VERSION "PDP-11" ' DEC PDP-11 BASIC
OPTION VERSION "RBASIC" ' Micronics RBASIC for 6809 FLEX
OPTION VERSION "RSTS-11" ' DEC RSTS-11 BASIC-PLUS
OPTION VERSION "SYSTEM/360" ' IBM System/360 Mainframe BASIC
OPTION VERSION "SYSTEM/370" ' IBM System/370 Mainframe BASIC
OPTION VERSION "TRS-80" ' TRS-80 Model I/III/4 LBASIC
OPTION VERSION "VINTAGE" ' Vintage BASIC 1.0.1
OPTION VERSION "XBASIC" ' TSC XBASIC for 6800 FLEX
* CONST variable [, ...] = value
Assigns the value to variable.
Any later assignment to the variable causus a VARIABLE NOT DECLARED error.
* DIM now supports lower and upper bounds.
OPTION BASE 1
DIM X( 9 ) ' lower bound is 1
DIM Y( 5 TO 9 ) ' lower bound is 5
* DIM now supports virtual variables.
OPTION BASE 1
OPEN "VIRTUAL.DAT" FOR VIRTUAL AS # 3 ' virtual data file
DIM # 3, A( 1000 ) ' array is virtual
LET A( 1000 ) = 0 ' value is written to the file
LET X = A( 1000 ) ' value is read from the file
CLOSE # 3 ' array is no longer valid
* ERROR 27, "Bad DATA"
Occurs when the READ command detects garbage in a DATA command.
* INPUT LINE
Same as LINE INPUT.
* MAT now supports lower and upper bounds.
OPTION BASE 1
MAT X( 9 ) = ZER ' lower bound is 1
MAT Y( 5 TO 9 ) = ZER ' lower bound is 5
MAT X = ZER( 9 ) ' lower bound is 1
MAT Y - ZER( 5 TO 9 ) ' lower bound is 5
* MAXLEN()
Returns the maximum string length.
* OPTION DIGITS integer
Sets the number of significant digits for PRINT.
Setting the value to zero restores the default.
* OPTION EDIT string$
Sets the program name used by the EDIT command.
Setting this to "" disables EDIT command.
* OPTION FILES string$
Sets the program name used by the FILES command.
Setting this to "" disables FILES command.
* OPTION PROMPT string$
Sets the prompt.
* OPTION PUNCT AT char$
Sets the PRINT AT character, commonly "@".
Setting this to "" disables PRINT AT.
Setting this to a non-punctuation character is not supported.
* OPTION PUNCT BYTE char$
Sets the BYTE type suffix, commonly "~".
Setting this to "" disables BYTE suffix.
Setting this to a non-punctuation character is not supported.
* OPTION PUNCT COMMENT char$
Sets the trailing COMMENT character, commonly "'".
Setting this to "" disables trailing comments.
Setting this to a non-punctuation character is not supported.
* OPTION PUNCT CURRENCY char$
Sets the CURRENCY type suffix, commonly "@".
Setting this to "" disables CURRENCY suffix.
Setting this to a non-punctuation character is not supported.
* OPTION PUNCT DOUBLE char$
Sets the DOUBLE type suffix, commonly "#".
Setting this to "" disables DOUBLE suffix.
Setting this to a non-punctuation character is not supported.
* OPTION PUNCT FILENUM char$
Sets the FILE NUMBER prefix, commonly "#".
Setting this to "" disables the FILE NUMBER prefix.
Setting this to a non-punctuation character is not supported.
* OPTION PUNCT IMAGE char$
Sets the shortcut IMAGE character, commonly ":".
Setting this to "" disables the shortcut IMAGE character.
Setting this to a non-punctuation character is not supported.
* OPTION PUNCT INPUT char$
Sets the shortcut INPUT character, commonly "!".
Setting this to "" disables the shortcut INPUT character.
Setting this to a non-punctuation character is not supported.
* OPTION PUNCT INTEGER char$
Sets the INTEGER type suffix, commonly "%".
Setting this to "" disables INTEGER suffix.
Setting this to a non-punctuation character is not supported.
* OPTION PUNCT LONG char$
Sets the LONG type suffix, commonly "&".
Setting this to "" disables LONG suffix.
Setting this to a non-punctuation character is not supported.
* OPTION PUNCT LPAREN char$
Sets the LEFT PARENTHESIS character, commonly "(".
Setting this to a non-punctuation character is not supported.
* OPTION PUNCT PRINT char$
Sets the shortcut PRINT character, commonly "?".
Setting this to "" disables the shortcut PRINT character.
Setting this to a non-punctuation character is not supported.
* OPTION PUNCT QUOTE char$
Sets the QUOTE character, commonly """".
Setting this to a non-punctuation character is not supported.
* OPTION PUNCT RPAREN char$
Sets the RIGHT PARENTHESIS character, commonly ")".
Setting this to a non-punctuation character is not supported.
* OPTION PUNCT SINGLE char$
Sets the SINGLE type suffix, commonly "!".
Setting this to "" disables SINGLE suffix.
Setting this to a non-punctuation character is not supported.
* OPTION PUNCT STATEMENT char$
Sets the shortcut STATEMENT seperator character, commonly ":".
Setting this to "" disables the STATEMENT seperator.
Setting this to a non-punctuation character is not supported.
* OPTION PUNCT STRING char$
Sets the STRING type suffix, commonly "$".
Setting this to "" disables STRING suffix.
Setting this to a non-punctuation character is not supported.
* OPTION RECLEN integer
Sets the default record length for RANDOM files, commonly 128.
Setting thisto zero means there is no default RANDOM record
length, so the record length must be specified in the OPEN
statement.
With OPTION RECLEN 128:
OPEN "FILE.DAT" FOR RANDOM AS #3
is considered to be the same as
OPEN "FILE.DAT" FOR RANDOM AS #3 LEN 128
With OPTION RECLEN 0:
OPEN "FILE.DAT" FOR RANDOM AS #3
causes an error.
* OPTION RENUM string$
Sets the program name used by the RENUM command.
Setting this to "" disables RENUM command.
* OPTION SCALE integer
Sets the number of digits to round after the decimal point for PRINT.
Setting the value to zero disables rounding.
* OPTION USING DIGIT
* OPTION USING COMMA
* OPTION USING PERIOD
* OPTION USING PLUS
* OPTION USING MINUS
* OPTION USING EXRAD
* OPTION USING DOLLAR
* OPTION USING FILLER
* OPTION USING LITERAL
* OPTION USING FIRST
* OPTION USING ALL
* OPTION USING LENGTH
Sets the characters recognized by PRINT USING.
Setting these to a non-punctuation character is not supported.
* OPTION VERSION now requires a string instead of a literal.
Some version names have changed.
* OPTION VERSION "PDP-8"
Added LPT, PTP, PTR, TTY, TTY IN and TTY OUT commands.
Added GET() and PUT() functions.
* OPTION VERSION "CALL/360"
* OPTION VERSION "SYSTEM/360"
* OPTION VERSION "SYSTEM/370"
Added alphabet extenders. $ is a string variable.
* OPTION ZONE integer
Sets the PRINT zone width.
Setting the value to zero restores the default.
* REPEAT - UNTIL added
REPEAT
...
EXIT REPEAT
...
UNTIL expression ' exits when expression != 0
* SPC( X ) and TAB( X )
No longer use control codes.
* UNTIL - UEND removed (to add REPEAT - UNTIL)
Here is a work-around for existin code using UNTIL-UEND:
UNITL expression -->> WHILE NOT expression
... ...
EXIT UNTIL -->> EXIT WHILE
... ...
UEND -->> WEND
* from Howard Wulf, AF5NE
Editor's Note: In the official release *ALL* of the test and sample
BASIC programs were removed and packaged in a separate "test" ZIP. I
have extracted those in to the bwbtest folder where most of the
tests were living in previous packages. I've also improved (I hope)
the EOL handling.
- ChipMaster
3 years ago |
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089 |
- ============================================================
- GENERAL
- ============================================================
-
-
- OPTION VERSION "CALL/360"
- REM INTERNAL ID: S70
- REM DESCRIPTION: SBC CALL/360 Mainframe BASIC
- REM REFERENCE: CALL/360: BASIC Reference Handbook
- REM by International Business Machines Corporation
- REM (c) 1970, The Service Bureau Corporation
- REM http://bitsavers.trailing-edge.com/pdf/ibm/360/os/
- REM call_360/CALL_360_BASIC_Reference_Handbook_1970.pdf
- REM
- OPTION STRICT OFF
- OPTION ANGLE RADIANS
- OPTION BUGS OFF
- OPTION LABELS OFF
- OPTION COMPARE BINARY
- OPTION COVERAGE OFF
- OPTION TRACE OFF
- OPTION ERROR GOTO
- OPTION IMPLICIT
- OPTION BASE 1
- OPTION RECLEN 0
- OPTION DATE "%Y/%m/%d"
- OPTION TIME "%H:%M:%S"
- OPTION PUNCT STRING "$"
- OPTION PUNCT DOUBLE " "
- OPTION PUNCT SINGLE " "
- OPTION PUNCT CURRENCY " "
- OPTION PUNCT LONG " "
- OPTION PUNCT INTEGER " "
- OPTION PUNCT BYTE " "
- OPTION PUNCT QUOTE """
- OPTION PUNCT COMMENT " "
- OPTION PUNCT STATEMENT " "
- OPTION PUNCT PRINT " "
- OPTION PUNCT INPUT " "
- OPTION PUNCT IMAGE ":"
- OPTION PUNCT LPAREN "("
- OPTION PUNCT RPAREN ")"
- OPTION PUNCT FILENUM " "
- OPTION PUNCT AT " "
- OPTION USING DIGIT "#"
- OPTION USING COMMA " "
- OPTION USING PERIOD "."
- OPTION USING PLUS "+"
- OPTION USING MINUS "-"
- OPTION USING EXRAD "!"
- OPTION USING DOLLAR " "
- OPTION USING FILLER " "
- OPTION USING LITERAL " "
- OPTION USING FIRST " "
- OPTION USING ALL " "
- OPTION USING LENGTH " "
-
-
- ============================================================
- COMMANDS
- ============================================================
-
-
- ------------------------------------------------------------
- SYNTAX: CHAIN filename$ [, linenumber]
- DESCRIPTION: Load and execute another BASIC program,
- without clearing common variables. For
- System/370, the syntax is CHAIN
- filename$,parameter$.
- ------------------------------------------------------------
- SYNTAX: CLOSE
- DESCRIPTION: Closes all files.
- ------------------------------------------------------------
- SYNTAX: CLOSE filename$ [, ...]
- DESCRIPTION: Closes a file.
- ------------------------------------------------------------
- SYNTAX: CLOSE filenumber [, ...]
- DESCRIPTION: Closes a file.
- ------------------------------------------------------------
- SYNTAX: DATA constant [, ...]
- DESCRIPTION: Stores numeric and string constants to be
- accessed by READ.
- ------------------------------------------------------------
- SYNTAX: DEF FNname[( arg [,...] )] = value
- DESCRIPTION: Defines a single-line function. Single-line
- functions require an equal sign.
- ------------------------------------------------------------
- SYNTAX: DEF FNname[( arg [,...] )]
- DESCRIPTION: Defines a multiline function. Multi-line DEF
- functions do not have an equal sign and must
- end with FNEND.
- ------------------------------------------------------------
- SYNTAX: DIM [# filenum,] variable([ lower TO ] upper)
- DESCRIPTION: Declares variables and specifies the
- dimensions of array variables. For array
- variables, if the lower bound is not
- provided, then the OPTION BASE value is used.
- If filenum is provided, then the variable is
- virtual.
- ------------------------------------------------------------
- SYNTAX: EDIT
- DESCRIPTION: implementation defined.
- ------------------------------------------------------------
- SYNTAX: END
- DESCRIPTION: Terminates program execution. If the BASIC
- program was executed from the operating
- system level, then control returns to the
- operating system, oterwise control reuturns
- to the BASIC prompt.
- ------------------------------------------------------------
- SYNTAX: FNEND
- DESCRIPTION: Specifies the last line of a multi-line DEF
- function.
- ------------------------------------------------------------
- SYNTAX: FOR variable = start TO finish [STEP
- increment]
- DESCRIPTION: Top of a FOR - NEXT structure. The loop will
- continue a fixed number of times, which is
- determined by the values of start, finish,
- and increment.
- ------------------------------------------------------------
- SYNTAX: GET filename$ , scalar [, ...]
- DESCRIPTION: Gets one (or more) values from a file.
- ------------------------------------------------------------
- SYNTAX: GO
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: GO SUB line
- DESCRIPTION: Initiates a subroutine call to the line
- specified. The subroutine must end with
- RETURN. The line may be a number or a label.
- ------------------------------------------------------------
- SYNTAX: GO TO line
- DESCRIPTION: Branches program execution to the specified
- line. The line may be a number or a label.
- ------------------------------------------------------------
- SYNTAX: GOSUB line
- DESCRIPTION: Initiates a subroutine call to the line
- specified. The subroutine must end with
- RETURN. The line may be a number or a label.
- ------------------------------------------------------------
- SYNTAX: GOTO line
- DESCRIPTION: Branches program execution to the specified
- line. The line may be a number or a label.
- ------------------------------------------------------------
- SYNTAX: IF value THEN line1 [ELSE line2]
- DESCRIPTION: Single line standard IF command. If the value
- is non-zero, then branh to line1. If the
- value is zero and ELSE is provided, then
- branch to line2. Otherwise continue to the
- next line. LABELS are not allowed.
- ------------------------------------------------------------
- SYNTAX: IMAGE "format string"
- DESCRIPTION: Provides format string for PRINT USING
- linenum.
- ------------------------------------------------------------
- SYNTAX: INPUT "prompt string" , variable [, ...]
- DESCRIPTION: Reads input from the terminal after displaying
- a prompt.
- ------------------------------------------------------------
- SYNTAX: INPUT # filenum , variable [, ...]s
- DESCRIPTION: Reads input from the file specified by
- filenum.
- ------------------------------------------------------------
- SYNTAX: INPUT variable [, ...]
- DESCRIPTION: Reads input from the terminal.
- ------------------------------------------------------------
- SYNTAX: [LET] variable [, ...] = value
- DESCRIPTION: Assigns the value to the variable. The LET
- keyword is optional.
- ------------------------------------------------------------
- SYNTAX: LIST line1 [- line2]
- DESCRIPTION: Lists BASIC program lines from line1 to line2
- to the console on stdout.
- ------------------------------------------------------------
- SYNTAX: LISTNH line1 [- line2]
- DESCRIPTION: Lists BASIC program lines from line1 to line2
- to the console on stdout.
- ------------------------------------------------------------
- SYNTAX: LOAD [filename$]
- DESCRIPTION: Loads an ASCII BASIC program into memory.
- ------------------------------------------------------------
- SYNTAX: LPRINT [USING format-string$;] value ...
- DESCRIPTION: Send output to the printer (stderr).
- ------------------------------------------------------------
- SYNTAX: MAINTAINER
- DESCRIPTION: This command is reserved for use by the
- Bywater BASIC maintainer. It is not for the
- BASIC programmer.
- ------------------------------------------------------------
- SYNTAX: MAINTAINER CMDS
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: MAINTAINER CMDS HTML
- DESCRIPTION: Dump COMMAND vs VERSION as HTML table
- ------------------------------------------------------------
- SYNTAX: MAINTAINER CMDS ID
- DESCRIPTION: Dump COMMAND #define.
- ------------------------------------------------------------
- SYNTAX: MAINTAINER CMDS MANUAL
- DESCRIPTION: Dump COMMAND manual.
- ------------------------------------------------------------
- SYNTAX: MAINTAINER CMDS_SWITCH
- DESCRIPTION: Dump COMMAND switch.
- ------------------------------------------------------------
- SYNTAX: MAINTAINER CMDS TABLE
- DESCRIPTION: Dump COMMAND table.
- ------------------------------------------------------------
- SYNTAX: MAINTAINER DEBUG
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: MAINTAINER DEBUG OFF
- DESCRIPTION: Disable degug tracing.
- ------------------------------------------------------------
- SYNTAX: MAINTAINER DEBUG ON
- DESCRIPTION: Enable degug tracing.
- ------------------------------------------------------------
- SYNTAX: MAINTAINER FNCS
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: MAINTAINER FNCS HTML
- DESCRIPTION: Dump FUNCTION vs VERSION as HTML table.
- ------------------------------------------------------------
- SYNTAX: MAINTAINER FNCS ID
- DESCRIPTION: Dump FUNCTION #define.
- ------------------------------------------------------------
- SYNTAX: MAINTAINER FNCS MANUAL
- DESCRIPTION: Dump FUNCTION manual.
- ------------------------------------------------------------
- SYNTAX: MAINTAINER FNCS SWITCH
- DESCRIPTION: Dump FUNCTION switch.
- ------------------------------------------------------------
- SYNTAX: MAINTAINER FNCS TABLE
- DESCRIPTION: Dump FUNCTION table.
- ------------------------------------------------------------
- SYNTAX: MAINTAINER MANUAL
- DESCRIPTION: Dump manual for the currently selected OPTION
- VERSION.
- ------------------------------------------------------------
- SYNTAX: MAINTAINER STACK
- DESCRIPTION: Dump the BASIC stack.
- ------------------------------------------------------------
- SYNTAX: MAT arrayname = value
- DESCRIPTION: Matrix operations:
- MAT A = CON
- MAT A = IDN
- MAT A = ZER
- MAT A = INV B
- MAT A = TRN B
- MAT A = (k) * B
- MAT A = B
- MAT A = B + C
- MAT A = B - C
- MAT A = B * C
- ------------------------------------------------------------
- SYNTAX: MAT GET filename$, arrayname
- DESCRIPTION: Matrix get.
- ------------------------------------------------------------
- SYNTAX: MAT INPUT arrayname
- DESCRIPTION: Matrix input.
- ------------------------------------------------------------
- SYNTAX: MAT PRINT arrayname
- DESCRIPTION: Matrix print.
- ------------------------------------------------------------
- SYNTAX: MAT PUT filename$, arrayname
- DESCRIPTION: Matrix put.
- ------------------------------------------------------------
- SYNTAX: MAT READ arrayname
- DESCRIPTION: Matrix read.
- ------------------------------------------------------------
- SYNTAX: NEW
- DESCRIPTION: Deletes the program in memory and clears all
- variables.
- ------------------------------------------------------------
- SYNTAX: NEXT [variable]
- DESCRIPTION: The bottom line of a FOR - NEXT structure.
- ------------------------------------------------------------
- SYNTAX: OF
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: ON value GOSUB line [, ...]
- DESCRIPTION: Calls based on the rounded value.
- ------------------------------------------------------------
- SYNTAX: ON value GOTO line [, ...]
- DESCRIPTION: Branches based on the rounded value.
- ------------------------------------------------------------
- SYNTAX: OPEN filenumber,
- filename$,
- INPUT|OUTPUT|APPEND|VIRTUAL
- DESCRIPTION: Opens a file for use.
- ------------------------------------------------------------
- SYNTAX: OPTION
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: OPTION ANGLE
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: OPTION ANGLE DEGREES
- DESCRIPTION: Configures these math functions to accept and
- return angles in degrees: ACOS, ACS, ANGLE,
- ARCSIN, ASIN, ASN, ARCTAN, ATN, ATAN, COS,
- COT, CSC, SEC, SIN and TAN.
- ------------------------------------------------------------
- SYNTAX: OPTION ANGLE GRADIANS
- DESCRIPTION: Configures these math functions to accept and
- return angles in gradians: ACOS, ANGLE,
- ASIN, ASN, ATN, ATAN, COS, COT, CSC, SEC, SIN
- and TAN.
- ------------------------------------------------------------
- SYNTAX: OPTION ANGLE RADIANS
- DESCRIPTION: Configures these math functions to accept and
- return angles in radians: ACOS, ANGLE, ASIN,
- ASN, ATN, ATAN, COS, COT, CSC, SEC, SIN and
- TAN.
- ------------------------------------------------------------
- SYNTAX: OPTION ARITHMETIC
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: OPTION ARITHMETIC DECIMAL
- DESCRIPTION: Currently has no effect.
- ------------------------------------------------------------
- SYNTAX: OPTION ARITHMETIC FIXED
- DESCRIPTION: Currently has no effect.
- ------------------------------------------------------------
- SYNTAX: OPTION ARITHMETIC NATIVE
- DESCRIPTION: Currently has no effect.
- ------------------------------------------------------------
- SYNTAX: OPTION BASE integer
- DESCRIPTION: Sets the default lowest array subscript.
- ------------------------------------------------------------
- SYNTAX: OPTION BUGS
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: OPTION BUGS BOOLEAN
- DESCRIPTION: Boolean results are 1 or 0 instead of bitwise.
- ------------------------------------------------------------
- SYNTAX: OPTION BUGS OFF
- DESCRIPTION: Disables bugs commonly found in many BASIC
- dialects.
- ------------------------------------------------------------
- SYNTAX: OPTION BUGS ON
- DESCRIPTION: Enables bugs commonly found in many BASIC
- dialects.
- ------------------------------------------------------------
- SYNTAX: OPTION COMPARE
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: OPTION COMPARE BINARY
- DESCRIPTION: Causes string comparisons to be
- case-sensitive.
- ------------------------------------------------------------
- SYNTAX: OPTION COMPARE DATABASE
- DESCRIPTION: Causes string comparisons to be
- case-insensitive.
- ------------------------------------------------------------
- SYNTAX: OPTION COMPARE TEXT
- DESCRIPTION: Causes string comparisons to be
- case-insensitive.
- ------------------------------------------------------------
- SYNTAX: OPTION COVERAGE
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: OPTION COVERAGE OFF
- DESCRIPTION: Disables BASIC code coverage recording,
- displayed using the LIST command.
- ------------------------------------------------------------
- SYNTAX: OPTION COVERAGE ON
- DESCRIPTION: Enables BASIC code coverage recording,
- displayed using the LIST command.
- ------------------------------------------------------------
- SYNTAX: OPTION DATE format$
- DESCRIPTION: Sets the date format string used by C
- strftime() for DATE$.
- ------------------------------------------------------------
- SYNTAX: OPTION DIGITS integer
- DESCRIPTION: Sets the number of significant digits for
- PRINT. Setting the value to zero restores
- the default.
- ------------------------------------------------------------
- SYNTAX: OPTION DISABLE
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: OPTION DISABLE COMMAND name$
- DESCRIPTION: Disables the specified BASIC command.
- ------------------------------------------------------------
- SYNTAX: OPTION DISABLE FUNCTION name$
- DESCRIPTION: Disables the specified BASIC function.
- ------------------------------------------------------------
- SYNTAX: OPTION DISABLE OPERATOR name$
- DESCRIPTION: Disables the specified BASIC operator.
- ------------------------------------------------------------
- SYNTAX: OPTION EDIT string$
- DESCRIPTION: Sets the program name used by the EDIT
- command.
- ------------------------------------------------------------
- SYNTAX: OPTION ENABLE
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: OPTION ENABLE COMMAND name$
- DESCRIPTION: Enables the specified BASIC command.
- ------------------------------------------------------------
- SYNTAX: OPTION ENABLE FUNCTION name$
- DESCRIPTION: Enables the specified BASIC function.
- ------------------------------------------------------------
- SYNTAX: OPTION ENABLE OPERATOR name$
- DESCRIPTION: Enables the specified BASIC operator.
- ------------------------------------------------------------
- SYNTAX: OPTION ERROR
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: OPTION ERROR GOSUB
- DESCRIPTION: When an error occurs, GOSUB to the error
- handler. The error handler exits with
- RETURN.
- ------------------------------------------------------------
- SYNTAX: OPTION ERROR GOTO
- DESCRIPTION: When an error occurs, GOTO to the error
- handler. The error handler exits with
- RESUME.
- ------------------------------------------------------------
- SYNTAX: OPTION EXPLICIT
- DESCRIPTION: All variables must be declared using DIM.
- ------------------------------------------------------------
- SYNTAX: OPTION EXTENSION string$
- DESCRIPTION: Sets the BASIC filename extension, commonly
- ".bas".
- ------------------------------------------------------------
- SYNTAX: OPTION FILES string$
- DESCRIPTION: Sets the program name used by the FILES
- command.
- ------------------------------------------------------------
- SYNTAX: OPTION IMPLICIT
- DESCRIPTION: Variables need not be declared using DIM,
- provided arrays have no more that 10
- elements. This is the opposite of OPTION
- EXPLICIT, and is the default for all versions
- of BASIC.
- ------------------------------------------------------------
- SYNTAX: OPTION INDENT integer
- DESCRIPTION: Sets indention level for LIST. Zero means no
- indention. Default is 2.
- ------------------------------------------------------------
- SYNTAX: OPTION LABELS
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: OPTION LABELS OFF
- DESCRIPTION: Disables text labels.
- ------------------------------------------------------------
- SYNTAX: OPTION LABELS ON
- DESCRIPTION: Enables text labels.
- ------------------------------------------------------------
- SYNTAX: OPTION PROMPT string$
- DESCRIPTION: Sets the BASIC prompt.
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT AT char$
- DESCRIPTION: Sets the PRINT AT character, commonly "@".
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT BYTE char$
- DESCRIPTION: Sets the suffix character that indicates a
- variable is of type BYTE, commonly "~".
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT COMMENT char$
- DESCRIPTION: Sets the shortcut COMMENT character.
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT CURRENCY char$
- DESCRIPTION: Sets the suffix character that indicates a
- variable is of type CURRENCY, commonly "@".
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT DOUBLE char$
- DESCRIPTION: Sets the suffix character that indicates a
- variable is of type DOUBLE, commonly "#".
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT FILENUM char$
- DESCRIPTION: Sets the FILE NUMBER prefix character,
- commonly "#".
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT IMAGE char$
- DESCRIPTION: Sets the shortcut IMAGE character, commonly
- ":".
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT INPUT char$
- DESCRIPTION: Sets the shortcut INPUT character, commonly
- "!".
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT INTEGER char$
- DESCRIPTION: Sets the suffix character that indicates a
- variable is of type INTEGER, commonly "%".
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT LONG char$
- DESCRIPTION: Sets the suffix character that indicates a
- variable is of type LONG, commonly "&".
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT LPAREN char$
- DESCRIPTION: Sets the LEFT PARENTHESIS character, commonly
- "(".
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT_PRINT char$
- DESCRIPTION: Sets the shortcut PRINT character, commonly
- "?".
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT QUOTE char$
- DESCRIPTION: Sets the QUOTE character, commonly """
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT RPAREN char$
- DESCRIPTION: Sets the RIGHT PARENTHESIS character, commonly
- ")".
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT SINGLE char$
- DESCRIPTION: Sets the suffix character that indicates a
- variable is of type SINGLE, commonly "!".
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT STATEMENT char$
- DESCRIPTION: Sets the statement seperator character,
- commonly ":".
- ------------------------------------------------------------
- SYNTAX: OPTION PUNCT STRING char$
- DESCRIPTION: Sets the suffix character that indicates a
- variable is of type STRING, commonly "$".
- ------------------------------------------------------------
- SYNTAX: OPTION RECLEN integer
- DESCRIPTION: Sets the default RANDOM record length.
- ------------------------------------------------------------
- SYNTAX: OPTION RENUM string$
- DESCRIPTION: Sets the program name used by the RENUM
- command.
- ------------------------------------------------------------
- SYNTAX: OPTION ROUND
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: OPTION ROUND BANK
- DESCRIPTION: Round using the Banker rule.
- ------------------------------------------------------------
- SYNTAX: OPTION ROUND MATH
- DESCRIPTION: Round using mathematical rules.
- ------------------------------------------------------------
- SYNTAX: OPTION ROUND TRUNCATE
- DESCRIPTION: Round using truncation.
- ------------------------------------------------------------
- SYNTAX: OPTION SCALE integer
- DESCRIPTION: Sets the number of digits to round after the
- decimal point for PRINT. Setting the value
- to zero disables rounding.
- ------------------------------------------------------------
- SYNTAX: OPTION SLEEP double
- DESCRIPTION: Sets multiplier for SLEEP and WAIT. Zero
- means no waiting. Default is 1.
- ------------------------------------------------------------
- SYNTAX: OPTION STDERR filename$
- DESCRIPTION: Sets the file used for STDERR, which is used
- by LPRINT commands.
- ------------------------------------------------------------
- SYNTAX: OPTION STDIN filename$
- DESCRIPTION: Sets the file used for STDIN, which is used by
- INPUT commands.
- ------------------------------------------------------------
- SYNTAX: OPTION STDOUT filename$
- DESCRIPTION: Sets the file used for STDOUT, which is used
- by PRINT commands.
- ------------------------------------------------------------
- SYNTAX: OPTION STRICT
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: OPTION STRICT OFF
- DESCRIPTION: Disables checking for implicit array creation
- without using the DIM command.
- ------------------------------------------------------------
- SYNTAX: OPTION STRICT ON
- DESCRIPTION: Enables checking for implicit array creation
- without using the DIM command.
- ------------------------------------------------------------
- SYNTAX: OPTION TERMINAL
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: OPTION TERMINAL ADM
- DESCRIPTION: Enables ADM-3A terminal control codes for CLS,
- COLOR, and LOCATE.
- ------------------------------------------------------------
- SYNTAX: OPTION TERMINAL ANSI
- DESCRIPTION: Enables ANSI terminal control codes for CLS,
- COLOR, and LOCATE.
- ------------------------------------------------------------
- SYNTAX: OPTION TERMINAL NONE
- DESCRIPTION: Disables terminal control codes for CLS,
- COLOR, and LOCATE.
- ------------------------------------------------------------
- SYNTAX: OPTION TIME format$
- DESCRIPTION: Sets the time format string used by C
- strftime() for TIME$.
- ------------------------------------------------------------
- SYNTAX: OPTION TRACE
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: OPTION TRACE OFF
- DESCRIPTION: Disables displaying a stack trace when an
- ERROR occurs.
- ------------------------------------------------------------
- SYNTAX: OPTION TRACE ON
- DESCRIPTION: Enables displaying a stack trace when an ERROR
- occurs.
- ------------------------------------------------------------
- SYNTAX: OPTION USING
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: OPTION USING ALL char$
- DESCRIPTION: Specifies the magic ALL character for the
- PRINT USING command. A common value is "&".
- ------------------------------------------------------------
- SYNTAX: OPTION USING COMMA char$
- DESCRIPTION: Specifies the magic COMMA character for the
- PRINT USING command. A common value is ",".
- ------------------------------------------------------------
- SYNTAX: OPTION USING DIGIT char$
- DESCRIPTION: Specifies the magic DIGIT character for the
- PRINT USING command. A common value is "#".
- ------------------------------------------------------------
- SYNTAX: OPTION USING DOLLAR char$
- DESCRIPTION: Specifies the magic DOLLAR character for the
- PRINT USING command. A common value is "$".
- ------------------------------------------------------------
- SYNTAX: OPTION USING EXRAD char$
- DESCRIPTION: Specifies the magic EXRAD character for the
- PRINT USING command. A common value is "^".
- ------------------------------------------------------------
- SYNTAX: OPTION USING FILLER char$
- DESCRIPTION: Specifies the magic FILLER character for the
- PRINT USING command. A common value is "*".
- ------------------------------------------------------------
- SYNTAX: OPTION USING FIRST char$
- DESCRIPTION: Specifies the magic FIRST character for the
- PRINT USING command. A common value is "!".
- ------------------------------------------------------------
- SYNTAX: OPTION USING LENGTH char$
- DESCRIPTION: Specifies the magic LENGTH character for the
- PRINT USING command. A common value is "\".
- ------------------------------------------------------------
- SYNTAX: OPTION USING LITERAL char$
- DESCRIPTION: Specifies the magic LITERAL character for the
- PRINT USING command. A common value is "_".
- ------------------------------------------------------------
- SYNTAX: OPTION USING MINUS char$
- DESCRIPTION: Specifies the magic MINUS character for the
- PRINT USING command. A common value is "-".
- ------------------------------------------------------------
- SYNTAX: OPTION USING PERIOD char$
- DESCRIPTION: Specifies the magic PERIOD character for the
- PRINT USING command. A common value is ".".
- ------------------------------------------------------------
- SYNTAX: OPTION USING PLUS char$
- DESCRIPTION: Specifies the magic PLUS character for the
- PRINT USING command. A common value is "+".
- ------------------------------------------------------------
- SYNTAX: OPTION VERSION version$
- DESCRIPTION: Selects a specific BASIC version, which is a
- combination of OPTION settings, commands,
- functions and operators. If no version is
- specified, displays a list of the available
- versions.
- ------------------------------------------------------------
- SYNTAX: OPTION ZONE integer
- DESCRIPTION: Sets the PRINT zone width. Setting the value
- to zero restores the default.
- ------------------------------------------------------------
- SYNTAX: PAUSE [comment]
- DESCRIPTION: Pauses processing until the ENTER key is
- presseed.
- ------------------------------------------------------------
- SYNTAX: PRINT # filenum , [USING format$;] value ...
- DESCRIPTION: Sends output to a file.
- ------------------------------------------------------------
- SYNTAX: PRINT [USING format$;] value ...
- DESCRIPTION: Sends output to the screen.
- ------------------------------------------------------------
- SYNTAX: PUT filename$ , value [, ...]
- DESCRIPTION: Puts one (or more) values into a file.
- ------------------------------------------------------------
- SYNTAX: QUIT
- DESCRIPTION: Exits to the operating system.
- ------------------------------------------------------------
- SYNTAX: READ variable [, ...]
- DESCRIPTION: Reads values from DATA statements.
- ------------------------------------------------------------
- SYNTAX: REM ...
- DESCRIPTION: Remark.
- ------------------------------------------------------------
- SYNTAX: RESET filename$ [, ...]
- DESCRIPTION: Positions an input or output file to the
- bcginning.
- ------------------------------------------------------------
- SYNTAX: RESTORE [line]
- DESCRIPTION: Resets the line used for the next READ
- statement. line may be either a number or a
- label.
- ------------------------------------------------------------
- SYNTAX: RETURN
- DESCRIPTION: Concludes a subroutine called by GOSUB.
- ------------------------------------------------------------
- SYNTAX: RUN filename$
- DESCRIPTION: Loads a new BAASIC program and executes the
- program from the start.
- ------------------------------------------------------------
- SYNTAX: RUN line
- DESCRIPTION: Executes the program in memory beginning at
- line.
- ------------------------------------------------------------
- SYNTAX: RUN
- DESCRIPTION: Executes the program in memory from the start.
- ------------------------------------------------------------
- SYNTAX: RUNNH line
- DESCRIPTION: Executes the program in memory beginning at
- line.
- ------------------------------------------------------------
- SYNTAX: RUNNH filename$
- DESCRIPTION: Loads a new BAASIC program and executes the
- program from the start.
- ------------------------------------------------------------
- SYNTAX: RUNNH
- DESCRIPTION: Executes the program in memory from the start.
- ------------------------------------------------------------
- SYNTAX: SAVE [filename$]
- DESCRIPTION: Saves the current program into the file
- filename$ in ASCII format.
- ------------------------------------------------------------
- SYNTAX: STEP
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: STOP
- DESCRIPTION: Interrupts program execution and displays the
- line number of the STOP command. For use
- when debugging BASIC programs. Whether STOP
- issues a SIGINT signal is implementation
- defined.
- ------------------------------------------------------------
- SYNTAX: SYSTEM
- DESCRIPTION: Exits to the operating system.
- ------------------------------------------------------------
- SYNTAX: THEN
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: TO
- DESCRIPTION: Syntax Error.
- ------------------------------------------------------------
- SYNTAX: USE parameter$
- DESCRIPTION: Receives the value from the calling CHAINing
- program.
- ------------------------------------------------------------
-
-
- ============================================================
- FUNCTIONS
- ============================================================
-
-
- ------------------------------------------------------------
- SYNTAX: N = ABS( X )
- PARAMETER: X is a number
- DESCRIPTION: The absolute value of X.
- ------------------------------------------------------------
- SYNTAX: N = ACS( X )
- PARAMETER: X is a number
- DESCRIPTION: The arccosine of X in radians, where 0 <=
- ACS(X) <= PI. X shall be in the range -1 <=
- X <= 1.
- ------------------------------------------------------------
- SYNTAX: N = ASC( A$ )
- PARAMETER: A$ is a string, LEN >= 1
- DESCRIPTION: The numeric code for the first letter in A$.
- For example, ASC("ABC") returns 65 on ASCII
- systems.
- ------------------------------------------------------------
- SYNTAX: N = ASN( X )
- PARAMETER: X is a number
- DESCRIPTION: The arcsine of X in radians, where -PI/2 <=
- ASN(X) <= PI/2; X shall be in the range -1 <=
- X <= 1.
- ------------------------------------------------------------
- SYNTAX: N = ATN( X )
- PARAMETER: X is a number
- DESCRIPTION: The arctangent of X in radians, i.e. the angle
- whose tangent is X, where -PI/2 < ATN(X) <
- PI/2.
- ------------------------------------------------------------
- SYNTAX: S$ = CHR( X )
- PARAMETER: X is a number
- DESCRIPTION: The output of PRINT X. A$ = CHR(X) is the
- opposite of X = NUM(A$).
- ------------------------------------------------------------
- SYNTAX: N = COS( X )
- PARAMETER: X is a number
- DESCRIPTION: The cosine of X, where X is in radians.
- ------------------------------------------------------------
- SYNTAX: N = COT( X )
- PARAMETER: X is a number
- DESCRIPTION: The cotangent of X, where X is in radians.
- ------------------------------------------------------------
- SYNTAX: N = CSC( X )
- PARAMETER: X is a number
- DESCRIPTION: The cosecant of X, where X is in radians.
- ------------------------------------------------------------
- SYNTAX: N = DEG( X )
- PARAMETER: X is a number
- DESCRIPTION: The number of degrees in X radians.
- ------------------------------------------------------------
- SYNTAX: N = DET
- DESCRIPTION: The determinant of the last MAT INV. Zero
- means error.
- ------------------------------------------------------------
- SYNTAX: N = EXP( X )
- PARAMETER: X is a number
- DESCRIPTION: The exponential value of X, i.e., the value of
- the base of natural logarithms (e = 2.71828)
- raised to the power of X; if EXP(X) is less
- that machine infinitesimal, then its value
- shall be replaced with zero.
- ------------------------------------------------------------
- SYNTAX: N = FIX( X )
- PARAMETER: X is a number
- DESCRIPTION: The truncated integer, part of X. FIX (X) is
- equivalent to SGN(X)*INT(ABS(X)). The major
- difference between FIX and INT is that FIX
- does not return the next lower number for
- negative X.
- ------------------------------------------------------------
- SYNTAX: N = HCS( X )
- PARAMETER: X is a number
- DESCRIPTION: The hyperbolic cosine of X.
- ------------------------------------------------------------
- SYNTAX: N = HSN( X )
- PARAMETER: X is a number
- DESCRIPTION: The hyperbolic sine of X.
- ------------------------------------------------------------
- SYNTAX: N = HTN( X )
- PARAMETER: X is a number
- DESCRIPTION: The hyperbolic tangent of X.
- ------------------------------------------------------------
- SYNTAX: N = INT( X )
- PARAMETER: X is a number
- DESCRIPTION: The largest integer not greater than X; e.g.
- INT(1.3) = 1 and INT(-1.3) = 2.
- ------------------------------------------------------------
- SYNTAX: N = LEN( A$ )
- PARAMETER: A$ is a string, LEN >= 0
- DESCRIPTION: The length of A$.
- ------------------------------------------------------------
- SYNTAX: N = LGT( X )
- PARAMETER: X is a number, > 0
- DESCRIPTION: The common logarithm of X; X shall be greater
- than zero.
- ------------------------------------------------------------
- SYNTAX: N = LOG( X )
- PARAMETER: X is a number, > 0
- DESCRIPTION: The natural logarithm of X; X shall be greater
- than zero.
- ------------------------------------------------------------
- SYNTAX: N = LTW( X )
- PARAMETER: X is a number, > 0
- DESCRIPTION: The base 2 logarithm of X; X shall be greater
- than zero.
- ------------------------------------------------------------
- SYNTAX: S$ = MAX( A$, B$ )
- PARAMETER: A$ is a string, LEN >= 0
- PARAMETER: B$ is a string, LEN >= 0
- DESCRIPTION: The larger of the parameters.
- ------------------------------------------------------------
- SYNTAX: N = MAX( X, Y )
- PARAMETER: X is a number
- PARAMETER: Y is a number
- DESCRIPTION: The larger of the parameters.
- ------------------------------------------------------------
- SYNTAX: N = MIN( X, Y )
- PARAMETER: X is a number
- PARAMETER: Y is a number
- DESCRIPTION: The smaller of the parameters.
- ------------------------------------------------------------
- SYNTAX: S$ = MIN( A$, B$ )
- PARAMETER: A$ is a string, LEN >= 0
- PARAMETER: B$ is a string, LEN >= 0
- DESCRIPTION: The smaller of the parameters.
- ------------------------------------------------------------
- SYNTAX: N = NUM( A$ )
- PARAMETER: A$ is a string, LEN >= 0
- DESCRIPTION: The value of the numeric-constant associated
- with A$, if the string associated with A$ is
- a numeric-constant. Leading and trailing
- spaces in the string are ignored. If the
- evaluation of the numeric-constant would
- result in a value which causes an underflow,
- then the value returned shall be zero. For
- example, NUM( " 123.5 " ) = 123.5, NUM(
- "2.E-99" ) could be zero, and NUM( "MCMXVII"
- ) causes an exception.
- ------------------------------------------------------------
- SYNTAX: S$ = NUM$( X )
- PARAMETER: X is a number
- DESCRIPTION: The string generated by the print-statement as
- the numeric-representation of the value
- associated with X.
- ------------------------------------------------------------
- SYNTAX: N = RAD( X )
- PARAMETER: X is a number
- DESCRIPTION: The number of radians in X degrees.
- ------------------------------------------------------------
- SYNTAX: N = RANDOMIZE
- DESCRIPTION: Seeds the pseudo-random number generator with
- TIME.
- ------------------------------------------------------------
- SYNTAX: N = RANDOMIZE( X )
- PARAMETER: X is a number
- DESCRIPTION: Seeds the pseudo-random number generator with
- X.
- ------------------------------------------------------------
- SYNTAX: N = RND
- DESCRIPTION: The next pseudo-random number in an
- implementation-defined sequence of
- pseudo-random numbers uniformly distributed
- in the range 0 <= RND < 1.
- ------------------------------------------------------------
- SYNTAX: N = RND( X )
- PARAMETER: X is a number
- DESCRIPTION: Returns a pseudorandom number in the range
- [0,1]. The value of X is ignored.
- ------------------------------------------------------------
- SYNTAX: N = SEC( X )
- PARAMETER: X is a number
- DESCRIPTION: The secant of X, where X is in radians.
- ------------------------------------------------------------
- SYNTAX: N = SGN( X )
- PARAMETER: X is a number
- DESCRIPTION: The sign of X: -1 if X < 0, 0 if X = 0, and +1
- if X > 0.
- ------------------------------------------------------------
- SYNTAX: N = SIN( X )
- PARAMETER: X is a number
- DESCRIPTION: The sine of X, where X is in radians.
- ------------------------------------------------------------
- SYNTAX: S$ = SPC( X )
- PARAMETER: X is a number
- DESCRIPTION: The string of X spaces. Only for use within
- the PRINT command.
- ------------------------------------------------------------
- SYNTAX: N = SQR( X )
- PARAMETER: X is a number, >= 0
- DESCRIPTION: The non-negative square root of X; X shall be
- non-negative.
- ------------------------------------------------------------
- SYNTAX: S$ = STR$( X )
- PARAMETER: X is a number
- DESCRIPTION: The string generated by the print-statement as
- the numeric-representation of the value
- associated with X.
- ------------------------------------------------------------
- SYNTAX: S$ = TAB( X )
- PARAMETER: X is a number
- DESCRIPTION: The string required to advance to column X.
- Only for use within the PRINT command.
- ------------------------------------------------------------
- SYNTAX: N = TAN( X )
- PARAMETER: X is a number
- DESCRIPTION: The tangent of X, where X is in radians.
- ------------------------------------------------------------
- SYNTAX: N = TIM
- DESCRIPTION: The time elapsed since the previous midnight,
- expressed in seconds; e.g., the value of TIME
- at 11:15 AM is 40500. If there is no clock
- available, then the value of TIME shall be
- -1. The value of TIME at midnight shall be
- zero (not 86400).
- ------------------------------------------------------------
- SYNTAX: N = VAL( A$ )
- PARAMETER: A$ is a string, LEN >= 1
- DESCRIPTION: The value of the numeric-constant associated
- with A$, if the string associated with A$ is
- a numeric-constant. Leading and trailing
- spaces in the string are ignored. If the
- evaluation of the numeric-constant would
- result in a value which causes an underflow,
- then the value returned shall be zero. For
- example, VAL( " 123.5 " ) = 123.5, VAL(
- "2.E-99" ) could be zero, and VAL( "MCMXVII"
- ) causes an exception.
- ------------------------------------------------------------
-
-
- ============================================================
- OPERATORS
- ============================================================
-
-
- ------------------------------------------------------------
- SYNTAX: X ** Y
- DESCRIPTION: Exponential
- PRECEDENCE: 14
- ------------------------------------------------------------
- SYNTAX: X ^ Y
- DESCRIPTION: Exponential
- PRECEDENCE: 14
- ------------------------------------------------------------
- SYNTAX: + X
- DESCRIPTION: Posation
- PRECEDENCE: 13
- ------------------------------------------------------------
- SYNTAX: - X
- DESCRIPTION: Negation
- PRECEDENCE: 13
- ------------------------------------------------------------
- SYNTAX: X * Y
- DESCRIPTION: Multiplication
- PRECEDENCE: 12
- ------------------------------------------------------------
- SYNTAX: X / Y
- DESCRIPTION: Division
- PRECEDENCE: 12
- ------------------------------------------------------------
- SYNTAX: X \ Y
- DESCRIPTION: Integer Division
- PRECEDENCE: 11
- ------------------------------------------------------------
- SYNTAX: X + Y
- DESCRIPTION: Addition
- PRECEDENCE: 9
- ------------------------------------------------------------
- SYNTAX: X - Y
- DESCRIPTION: Subtraction
- PRECEDENCE: 9
- ------------------------------------------------------------
- SYNTAX: X < Y
- DESCRIPTION: Less than
- PRECEDENCE: 7
- ------------------------------------------------------------
- SYNTAX: X <= Y
- DESCRIPTION: Less than or Equal
- PRECEDENCE: 7
- ------------------------------------------------------------
- SYNTAX: X <> Y
- DESCRIPTION: Not Equal
- PRECEDENCE: 7
- ------------------------------------------------------------
- SYNTAX: X = Y
- DESCRIPTION: Equal
- PRECEDENCE: 7
- ------------------------------------------------------------
- SYNTAX: X =< Y
- DESCRIPTION: Less than or Equal
- PRECEDENCE: 7
- ------------------------------------------------------------
- SYNTAX: X => Y
- DESCRIPTION: Greater than or Equal
- PRECEDENCE: 7
- ------------------------------------------------------------
- SYNTAX: X > Y
- DESCRIPTION: Greater than
- PRECEDENCE: 7
- ------------------------------------------------------------
- SYNTAX: X >< Y
- DESCRIPTION: Not Equal
- PRECEDENCE: 7
- ------------------------------------------------------------
- SYNTAX: X >= Y
- DESCRIPTION: Greater than or Equal
- PRECEDENCE: 7
- ------------------------------------------------------------
- SYNTAX: NOT X
- DESCRIPTION: Bitwise NOT
- PRECEDENCE: 6
- ------------------------------------------------------------
- SYNTAX: X AND Y
- DESCRIPTION: Bitwise AND
- PRECEDENCE: 5
- ------------------------------------------------------------
- SYNTAX: X OR Y
- DESCRIPTION: Bitwise OR
- PRECEDENCE: 4
- ------------------------------------------------------------
- SYNTAX: X XOR Y
- DESCRIPTION: Bitwise Exclusive OR
- PRECEDENCE: 3
- ------------------------------------------------------------
- SYNTAX: X EQV Y
- DESCRIPTION: Bitwise EQV
- PRECEDENCE: 2
- ------------------------------------------------------------
- SYNTAX: X IMP Y
- DESCRIPTION: Bitwise IMP
- PRECEDENCE: 1
- ------------------------------------------------------------
-
-
|