.NET
sbi.txt
Associated article: SBI: The Small Basic Interpreter
Tags: .NET
Published source code accompanying the article by Steve Reichenthal and Tom Bennett in which they present SBI (short for the "Small Basic Interpreter"), an engine that implements a useful a subset of Visual Basic. As such, SBI is a powerful scripting language that you and your users can instantly put to work. Also see SBI.ZIP.
_SBI: The Small Basic Interpreter_
by Steve Reichenthal and Tom Bennett
Example 1:
(a)
Sub Execute(Controller As _
SbiController)
(b)
Property Get OpPrec() As _
Integer
(c)
Property Let InvokeType(
Expr As SbiExpr, _
NewValue As Integer)
(d)
Property Get LineNum() _
As Integer
...


