Let Statement [Runtime]/text/sbasic/shared/03103100.xhpSun Microsystems, Inc.converted from old format - fpeLet statementLet Statement [Runtime]Assigns a value to a variable.Syntax:[Let] VarName=ExpressionParameters:VarName: Variable that you want to assign a value to. Value and variable type must be compatible.As in most BASIC dialects, the keyword Let is optional.Example:Sub ExampleLenDim sText as StringLet sText = "Las Vegas"msgbox Len(sText) REM returns 9End Sub