User`s manual

Any valid variable can be used after it has been declared:
tA = 36
' assign new value to the existing variable
tC = tA + tB
' perform any kind of arithmetical or
' logical operation
tE = pr_function(1,tA)
' pass variable to function or procedure,
' by value or address
pr_procedure(1,2,tD,tE)
' use them in conditional and/or
' loop statements and more ...
select case tb
case 1
tA = tD + 4
case 2
tB = tC + 6
case 3
tC = $ff
tb = tc - tA
case else
pr_procedure(1,2,tD,tE)
end select
for tA = 0 to 7
tC = tB >> 1
next tA
mikroBASIC
- Basic Compiler for Microchip PIC microcontrollers
42
mikroBASIC
MikroElektronika: Development tools - Books - Compilers
making it simple...
page
MikroElektronika: Development tools - Books - Compilers