The keyword let is optional.
let a = 12 let a$ = "Basmark Corporation" b$(9, 3) = "BASIC" let b(1, 5) = 495 print a print a$ print b$(9, 3) print b(1, 5)produces the output
12 Basmark Corporation BASIC 495
from The Basmark QuickBASIC Programmer’s Manual by Lawrence Leinweber