There are lots of words strung together to make sentences, but i still have no idea what they are telling me!!
Its another language that i'm not getting at all. Hats off to all you guys and galls that understand it and make money from it!!


(if it would be ever finished, and I'm afraid it would not, hehe
)
Write each "thing" once. The more times you repeat code the more places you have to fix the same bug. Or is that not what you meant.
First wrote a computer program on the Apple 2.
But got serious in BASIC on the BBC micro. Did not use comments or variables with more than one letter in those days - and put as many statements as possible on one line as it was all about allowing the interpreter to zip through the code as fast as possible. Very different nowadays... but I'm not scared of a big file of code.
- but isn't C++ a language that requires manual memory management? Just makes me wonder how many of those 6 million characters are taken up dealing with allocating and freeing memory. I thought people were moving away from such languages to ones that do automatic memory managment, as they are more code "efficient". But like I said, I'm no programmer.


function foo()
{
for(int i = 0; i < 25; i++)
{
do_something(i);
}
}
function foo() {
for(int i = 0; i < 25; i++) {
do_something(i);
}
}