Hi Jim, It is not extra work or waisted time/energy. It is generally recommended that you declare variables using the proper data type like integer, string, character, boolean, etc as it will improve memory usage and CPU usage. Every time you declare a variable without specifying its data type you force the runtime environment to interpret your code, and as a result you end up waisting your system resources on runtime interpretation of your code. So it really does not pay to be a lazy programmer. Which is exactly what you are when you don't declare and properly initialize variables.
Cheers! On 1/28/11, Jim Kitchen <[email protected]> wrote: > Hi Hayden, > > I guess that I am so against option Explicit because to me it is just extra > work and extra code and extra space for something that to me is just that. > > More later to Ken. > > TGIF and BFN > > Jim > > We waste more time by 8:00 in the morning than other companies do all day. > > [email protected] > http://www.kitchensinc.net > (440) 286-6920 > Chardon Ohio USA > --- > Gamers mailing list __ [email protected] > If you want to leave the list, send E-mail to > [email protected]. > You can make changes or update your subscription via the web, at > http://audyssey.org/mailman/listinfo/gamers_audyssey.org. > All messages are archived and can be searched and read at > http://www.mail-archive.com/[email protected]. > If you have any questions or concerns regarding the management of the list, > please send E-mail to [email protected]. > --- Gamers mailing list __ [email protected] If you want to leave the list, send E-mail to [email protected]. You can make changes or update your subscription via the web, at http://audyssey.org/mailman/listinfo/gamers_audyssey.org. All messages are archived and can be searched and read at http://www.mail-archive.com/[email protected]. If you have any questions or concerns regarding the management of the list, please send E-mail to [email protected].
