On 15.02.2012 08:18, Tim Roberts wrote:
> sturlamolden wrote:
>>
>> There are bigsimilarities between Python and the new C++ standard. Now
>> we can actually use our experience as Python programmers to write
>> fantastic C++ :-)
>
> This is more true than you might think. For quite a few years n
sturlamolden wrote:
>
>There are bigsimilarities between Python and the new C++ standard. Now
>we can actually use our experience as Python programmers to write
>fantastic C++ :-)
This is more true than you might think. For quite a few years now, I've
been able to do an almost line-for-line tran
On Feb 13, 4:21 am, sturlamolden wrote:
> There are bigsimilarities between Python and the new C++ standard. Now
> we can actually use our experience as Python programmers to write
> fantastic C++ :-)
And of course the keyword 'auto', which means automatic type
interence.
--
http://mail.python.o
There are bigsimilarities between Python and the new C++ standard. Now
we can actually use our experience as Python programmers to write
fantastic C++ :-)
Here is a small list of similarities to consider:
Iterate over any container, like Python's for loop:
for (type& item: container)
Pointer