Answers for "how to change variable value in smallbasic"

0

how to change variable value in smallbasic

Example:
A = 10
TextWindow.WriteLine(A)
Result: 10

'Now Change The Variable
A = 10 + 1
Result: 11

Compilcated E
Example:
B = 50
TextWindow.WBiteLine(B)
Result: 50

B = 50 + B
TextWindow.WriteLine(B)
Result: 100
Posted by: Guest on February-13-2022

Code answers related to "how to change variable value in smallbasic"

Browse Popular Code Answers by Language