Ok, I have just read chapters 1-3 from the beginner's book and I am still having a little trouble understanding.
Alright, lets start with the commands STR$ & VAL.
I know what they do, but how exactly are they used and how useful are they? An example would really help.
Next is the difference between commas (,) & semi colons (

.
What exacly is the difference? For example if I were to write this in a program:
Answer = 2 + 2
Print "The answer is ", Answer
I then execute the program and I get:
The answer is 4
Now if I were to write the above code but just add a semicolon:
Answer = 2 + 2
Print "The answer is "; Answer
I'd get:
The answer is 4
I see no difference in using a comma or a semi colon. How are each useful? When do I know which to use? An example would be nice.
FINALLY, the EXECUTE FILES. Exactly how are they helpful. How can the command be used in a program? An example would help me on this command which I have no understanding of.
Sorry if I ask the simplest stuff, I am a newbie after all and I want to learn.