NumVars = 0
AnotherExpression:
PRINT VN$
(t
);
" ="; VV
(t
) PRINT "Enter expression to evaluate :";
PRINT "-----------------------------" 'strip the spaces; meaningless in a math expression
N1$ = ""
z$=N1$
'check for assignment
VarFlag = 0
Start:
pErrL = 0: pErrR = 0 'checks L's = R's
pErr = 0 'other error(s)
FOR t
= 1 TO LEN(z$
) 'check # of P's match PRINT "Fatal Error; (="; pErrL;
"and )="; pErrR
pErrL = 0: pErrR = 0
PRINT "Fatal Error; 1st Paren must be a ("
pErrL = 0: pErrR = 0
PRINT "Fatal Error; last Paren must be a )"
'done error trapping;
' add Paren's to force one pass and contain any ops
z$ = "(" + z$ + ")"
RunAgain:
hasP = 0
PRINT "done, final value ="; z$
Find_inner_paren:
Find_left_paren:
' PRINT "."; lft$; "."; rht$; ".": END
'--------------------subroutine Find_Right_Paren:-------------
'driven entirely by Find_Left_Paren:
Find_Right_Paren:
rpFlag = 0
rpFlag = 0
rpFlag = t2
'--------------------END subroutine Find_Right_Paren:----------
'------------------subroutine Eval:----------------------------
'we are always working at the innermost Paren's
'this routine reduces it to a value one operation at a time
Eval:
z1$
= MID$(z$
, t1
, t2
- t1
+ 1)EvalAgain:
PRINT "no more ops; value = "; z1$
'--------------------END subroutine Eval:---------------------
'--------------------subroutine EvalAdd:----------------------
'performs the actual OPeration(s) when called by Eval:
EvalAdd:
Lend
= t5
+ 1:
GOTO GotLeft:
Lend = 2
GotLeft:
L1$
= MID$(z1$
, Lend
, t3
- Lend
)GotRite:
R1$
= MID$(z1$
, t3
+ 1, Rend
- (t3
+ 1))PRINT L1$;
" "; op$;
" "; R1$;
" = ";
'--------------------END EvalAdd:-----------------------------
'--------------subroutine Assign:-----------------------------
'sets up a variable assignment to the expression
Assign:
VarFlag = 0
Epl = t
NAM$
= LEFT$(z$
, Epl
- 1)
namErr = 0
FOR t1
= 1 TO LEN(NAM$
) 'legal var names are A-Z, 0-9, a-z, and _ ;cant start with a # namErr = namErr + 1
DuLast:
VarFlag = 0
PRINT "Fatal Error; illegal variable name"
NumVars = NumVars + 1
VN$(NumVars) = NAM$
VarFlag = NumVars
VarFlag = t1
'add new variable
NumVars = NumVars + 1
VN$(NumVars) = NAM$
VarFlag = NumVars
DuLast2:
'------------------END subroutine Assign:----------------------
'--------------subroutine ReplaceVars:-------------------------
'checks for operands being variables
ReplaceVars:
'-----------------END subroutine ReplaceVars:------------------
'----------------subroutine ReplaceVar:------------------------
'catches case of a variable not being an operand
ReplaceVar:
chNam$
= MID$(z1$
, 2, LEN(z1$
) - 2)'-------------------END subroutine ReplaceVar:-----------------