|
If
you are new to GWBASIC, there are a few things you need to know before you
start...
Some
useful statements ->
1) Open: load"C:filename.bas
2) Save: save"C:filename.bas
3) List: list or F1
4) Run: F2 or run
5) always number your lines
Some basic commands ->
To
Print a line
10 Print "hello"
To tell computer for user input
20 Input "What is your name";NAM$
When you want the user to enter letters always put a $ on the end of your
variable. if you want to just input numbers then there is no need of the $
sign.
You
can use my programs for examples and learn more.
If
you have any more questions, I will try my best to answer them. You can send in
your queries at [email protected]
|