Question:
How do variables work in smileBASIC?


Answer:

Variables are very important in programming because they hold information you will need through your program.

To declare a number variable, you can use the following code: (sometimes numerical variables are called "real")

MYVARIABLE=9

The above code creates a variable called MYVARIABLE and places the numerical value 9 in it!

To declare a string variable, you can use the following code: (string variables are where you hold words)

MYGAME$="GAME1"

The above code creates a variable called MYGAME and places the string value "GAME1" in it. Remember, you need to $ sign after your variable name for it to be a string variable.

Page updated: September 5th, 2015 @ 10:56 AM Eastern Time

Copyright 2010-2023 ExecuteCode.com.
All Rights Reserved.
Our other websites: