Page 2 of 2
Re: I've Had It!
Posted: Sat Apr 10, 2010 9:08 am
by UserOfPure
Kaeru Gaman wrote:if you want a standard, put Line Numbers into your code and work with "Goto".


Very true, because that's what Basic truly is.

Re: I've Had It!
Posted: Sun Apr 18, 2010 6:11 pm
by Amiga5k
In reality, all versions of BASIC use pointers...they just hide the "complexity" from the user and are generally safer because the compiler/running environment prevents the user from accessing outside the allotted areas of memory, etc.. For example, when you declare a variable, that variable represents some data in memory and so "points" to that data. Some BASICs allow you to dereference variable data using it just like a pointer, but without the danger:
a$ = "ABC"
Print a[0]
will print the character code for "A", which is in position zero.
I think the word BASIC should be quietly retired, since it has evolved so much and become so much more powerful (and faster, due to major compiler rewrites over the years). The 'B' in BASIC stands for Beginner's, so maybe it could be called 'PASIC' instead...or just 'Pure' (take out the 'Basic').
I doubt this will happen, though.
Russell
Re: I've Had It!
Posted: Sun Apr 18, 2010 7:33 pm
by Kaeru Gaman