QBasic Syntax
I have a simple QBasic question. I have inherited code for VRU display at work and am learning the code. I have not programmed in QBasic in years, and need to know what the purpose of ':' is. Anyone please?
Thanks
[232 byte] By [
kameamea81] at [2007-11-18 13:41:44]

# 1 Re: QBasic Syntax
As far as I can recall, : is only ever used as a label marker, e.g.:
Goto SomeLabel
Stuff
SomeLabel:
More Stuff
But there may be special cases for it in some esoteric statements. Its been many years for me as well :)
Apoch at 2007-11-8 0:18:37 >
