Article - Are Dynamic Languages Going to Replace Static Languages?
Having looked at the possiblity of using Python for developing simple applications on a S60-based mobile phone I realised how close "classic Blitz" is compared to Python
Python is a dynamic language which means you don't have to declare the variables to be a specific type. The variables are objects and in that sense, have been unchained and free to be whatever they like:
Is 'superstrict' programming merely a touch paranoid?
Or, does dynamic programming allow for your creative juices to flow (an possibly overspill)?
Having looked at the possiblity of using Python for developing simple applications on a S60-based mobile phone I realised how close "classic Blitz" is compared to Python
Python is a dynamic language which means you don't have to declare the variables to be a specific type. The variables are objects and in that sense, have been unchained and free to be whatever they like:
abc=45 abc='help'Languages like C++ force you to tell the compiler every minute detail of your programming intentions. This, it could be argued, kills creativity and increases development time since you are constantly trying to keep the compiler happy. The big plus though is that everything is water-tight and you have dotted the I's and crossed the T's
Is 'superstrict' programming merely a touch paranoid?
Or, does dynamic programming allow for your creative juices to flow (an possibly overspill)?